Hi, how do I change the Home slider bottom navigation bullets color ?
Hi mcraig77!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
#top .avia-layerslider .ls-bottom-slidebuttons a.ls-nav-active { background: orange; }
#top .avia-layerslider .ls-bottom-slidebuttons a { background: red; }
Regards,
Yigit
Thanks!
Is there any way to increase the size of the buttons? and change the rollover color?
Thanks SO much for the support
Hi!
You can use this:
#top .avia-layerslider .ls-bottom-slidebuttons a, #top .avia-layerslider .ls-nav-start, #top .avia-layerslider .ls-nav-stop {
height: 20px;
width: 20px;
border-radius: 30px;
}
Use this for the hover state:
#top .avia-layerslider .ls-bottom-slidebuttons a.ls-nav-active, #top .avia-layerslider .ls-bottom-slidebuttons a:hover, #top .avia-layerslider a.ls-nav-start:hover, #top .avia-layerslider a.ls-nav-stop:hover, #top .avia-layerslider a.ls-nav-start-active, #top .avia-layerslider a.ls-nav-stop-active {
opacity: 0.6;
filter: alpha(opacity=60);
background: #000;
}
Regards,
Ismael
Thanks! works great!