Tagged: fullscreen slider
I am trying to figure out how to extend the transparency overlay across 100% of the image in my fullscreen slider. I’d also like to increase the font size of the caption text “SHADE FROM THE OUTSIDE IN”. Any assistance would be much appreciated!
Website url is http://deluxeawning.net/ and it’s the first feature on the page that I’m referring to. Thanks!
Jadyn
Hey JadynWelch01!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
.caption_framed .slideshow_caption .avia-caption-title {
background: rgba(0, 0, 0, 1); } /* rgb value of the color opacity level = 1 */
div .slideshow_caption h2 { font-size: 40px; }
Regards,
Yigit
Thanks so much! The font size increase worked perfectly. But I don’t think I described my other point well enough. I’d like the transparent box under the caption text to extend to 100% of the width of the screen. The opacity level is fine as it is. Thank you!
And while we’re at it, can you show me the code to increase the button text size as well?
Hi!
Add this on Quick CSS or custom.css:
.caption_framed .slideshow_caption .avia-caption-title {
background: rgba(0, 0, 0, .8);
width: 100%;
}
.avia-fullscreen-slider .caption_container {
height: 100%;
width: 100%;
}
Use this for the button:
body div .avia-slideshow-button {
font-size: 20px;
}
Regards,
Ismael
How would you change the caption title text in the full screen slider to Upper and lowercase, vs. all uppercase?