Hi there,
I’d like to change the background color, opacity, and margins (space between the caption and the edge of the caption background) of the captions in my full-width sliders. What CSS do I need for these changes? Thanks!
Hey!
Try adding this code to the Quick CSS:
.caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title {
background: rgba(0,0,0,0.2);
padding: 15px 20px;
}
Background color and opacity are in the same property, RGBA (red, green, blue, alpha).
Cheers!
Josue
Thanks, Josue!