WebSite X5Help Center

 
Pavel K.
Pavel K.
User

Objekt Content Slider  en

Автор: Pavel K.
Просмотрено 362, Подписчики 1, Размещенный 0  

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

Размещено
3 Ответы - 1 Полезно
Daniel W.
Daniel W.
User
Лучший пользователь месяца DEЛучший пользователь месяца 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.

Читать больше
Размещено От Daniel W.
Pavel K.
Pavel K.
User
Автор

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“

Читать больше
Размещено От Pavel K.
Daniel W.
Daniel W.
User
Лучший пользователь месяца DEЛучший пользователь месяца 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

Читать больше
Размещено От Daniel W.