WebSite X5Help Center

 
Pavel K.
Pavel K.
User

Objekt Content Slider  en

Autor: Pavel K.
Besucht 370, Followers 1, Geteilt 0  

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

Gepostet am
3 ANTWORTEN - 1 NüTZLICH
Daniel W.
Daniel W.
User
Nutzer des Monats DENutzer des Monats 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.

Mehr lesen
Gepostet am von Daniel W.
Pavel K.
Pavel K.
User
Autor

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“

Mehr lesen
Gepostet am von Pavel K.
Daniel W.
Daniel W.
User
Nutzer des Monats DENutzer des Monats 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

Mehr lesen
Gepostet am von Daniel W.