Styling the captions for Image Slider

How do I style the text captions on the standard C5 image slider? I want centered text, white on a black background at the bottom of the photo.

thanks

Have you tried using the built-in wysiwyg Description editor?

Yes. But I can’t control it on breakpoints. Stays large on a mobile unfortunately.

SOLVED. I added a new css rule to my style.css file as follows (the font size clamp function did the trick):

.rslides p {

font-size: 50px;

color: white;

font-family: Georgia;

font-size: clamp(30px,6vw,100px);

text-align: center;

text-transform: uppercase;

background-color: rgba(0,0,0,.5);

position: relative;

z-index: 35;

}