Tagged: accordion slider
I need to setup custom background colors for each slider. How to do it?
Have now this:
– http://prnt.sc/8x17bp
– http://prnt.sc/8x17cz
Need to have this:
– http://prnt.sc/8x18ek
I develop website on localhost.
I want to change background color of Accordion Slider like you have here: http://kriesi.at/themes/enfold/homepage/home-v10-magazine/
Hi!
Please turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and give your accordion slider a custom class and then add following code to Quick CSS in Enfold theme options under General Styling tab
.your-custom-class .aviaccordion-slide-1 .aviaccordion-preview-title-wrap {
background: rgba(255,255,255,0.5)!important;
}
.your-custom-class .aviaccordion-slide-2 .aviaccordion-preview-title-wrap {
background: rgba(0,255,255,0.5)!important;
}
.your-custom-class .aviaccordion-slide-3 .aviaccordion-preview-title-wrap {
background: rgba(255,0,255,0.5)!important;
}
255,255,255 is the RGB value of the color and 0.5 is the opacity level
Cheers!
Yigit
Thanks! That’s great!