Center caption text under Slider image?

Is there a way to center caption text under images in the Slider stack?

If so, what is it?

Thanks in advance for any information.

Noah

Hi there @Noah

Centered captions for the Slider stack’s slides is not a feature of the stack at this time. You could write your own CSS to accomplish this, targeting the caption’s specific class name, if you want and add your custom CSS to the Custom CSS field in the Page Inspector.

1 Like

like so

To just center the text inside an element, use text-align: center;

.center {
  text-align: center;
  border: 3px solid green;
}

https://www.w3schools.com/css/css_align.asp

1 Like