WebSite X5Help Center

 
Pavel K.
Pavel K.
User

Objekt Content Slider  en

Author: Pavel K.
Visited 368, Followers 1, Shared 0  

Is it possible to somehow set a custom button overlay for the "Object Content Slider" plugin?

Posted on the
3 ANSWERS - 1 USEFUL
Daniel W.
Daniel W.
User
Best User of the month DEBest User of the month EN

What exactly is meant by “Custom Button Overlay”?

There is a button in the object. Should the button have a special effect?

Maybe post a link to the page, then the experts could perhaps create a code for it.

Read more
Posted on the from Daniel W.
Pavel K.
Pavel K.
User
Author

Adresa webu: https://filplot.cz/

Mluvím o možnosti nastavit si vlastní styl při najetí myší na tlačítko, jako je tomu u pluginu „HoverButton“

Read more
Posted on the from Pavel K.
Daniel W.
Daniel W.
User
Best User of the month DEBest User of the month EN

The "Hover Button" object uses Javascript, the Javascript experts might be able to help here.

There are also button effects with CSS, the CSS experts might be able to help here.

If no expert comes forward and wants to help, you will have to do without the hover effects.

===== A little help =====

In case the experts don't answer, here is a CSS code for a simple hover effect that I found on the Internet and that I was able to easily incorporate with my modest CSS knowledge.

At WebSiteX5 under ...

3 Sitemap

... mark the page with the "Content Slider" object and click on "Properties" at the top, then on the "Advanced" tab and paste the CSS code into ...

Custom code
Before the </HEAD> tag (before the closing head tag)

<style>
.slide-button
{background-color: #163EFF !important; color: #FFFFFF !important; padding: 10px !important; text-align: center; font-size: 16px;
transition: all 0.4s;} /* Alle Eigenschaften werden animiert */

.slide-button:hover
{
background-color: #FFD700 !important; /* Hintergrundfarbe */
color: black !important; /* Textfarbe */
}
</style>

My test page >> http://finde-links.de/test123-beautyblog/content-slider-normal.html

Read more
Posted on the from Daniel W.