Text aligment in "slider"

Hello.

When one add text to a slide it appears centered. Would it be possible to have the text published on the left ? (it is aligned left when entered in the “description” area but centered when viewed)

Thanks

Hi Adelin,

You will need to add some CSS to the developer options:

.swiper-slide
{
  text-align: left;
}

Although this will align all the text in the onboarding component to the left. If you want to target specific pieces of text then you might need some javaScript to make that work.

Thanks,
Deb

1 Like

It’s just perfect. Thanks a lot.