Tagged: LayerSlider
Hello,
In the demo ‘home v11: transparant menu’ there are transparant buttons ‘show me’ and ‘learn more’ in the layerslider. To create this, i must use the custom css in the layerslider (Styles). Can you give me the right coding for this transparant button?
greetz, marcel
Hi mgansevoort!
Try this out.
<a href="#about" class="avia-slideshow-button avia-button avia-color-light avia-multi-slideshow-button" data-duration="800" data-easing="easeInOutQuad">Learn more</a>
Some more styling might be required for the LayerSlider so send us a link to your page if it looks weird.
Regards,
Elliott
Thx, it works, but i want to ‘hover’ the buttons. So, when i go with the mouse stand on the button, the colors (of the text, border and background) change. How can i do that?
greetz, marcel
Hi Marcel,
Could you provide us with a link to the site in question so that we can take a closer look please?
Thanks,
Rikard
Yes of course, see the pirvate content
Hey!
Add this to your custom CSS.
.ls-slide a:hover p, .ls-slide a:hover div { color: red !important; border-color: red !important; }
Cheers!
Elliott
Works, thx, but, there’s still a little customisation:
the background of the button must be red (after hoover) and the text must be white. Border is ok!
Hey!
Just change the colors in the CSS.
.ls-slide a:hover p, .ls-slide a:hover div { color: white !important; background: red !important; border-color: red !important; }
Cheers!
Elliott
great, thx!