I want the yellow box to remain static and unchanged and have the wording change from slide to slide.
How can this be achieved?
Also I would like to center the text on Join today and cant find an option for that
I want the yellow box to remain static and unchanged and have the wording change from slide to slide.
How can this be achieved?
Also I would like to center the text on Join today and cant find an option for that
Hi There,
For a layer to be available on all slide, we can add it as static layer. But this means it will be the same on all slide. So this will not work if you need to change the text per slide. The work around is just create the same layer on each slide, same position, different text.
Hope this helps.
Hi there,
I noticed that there is no text alignment option in slider layer elements, the alignment that is there is for grid alignment. And for that, you need to use custom styling.
In your screenshot there is a Style
button, click the down-arrow icon beside it, then go to Advanced CSS
section and click Layer
button. And there, add text-align: center;
, it should look like this
{
text-align: center;
}
Then save it, and you should be done
Thanks!
Thanks That worked in Wordpress but not on the live site??
Hi there,
Not sure why it is not working for you. Maybe something related to cache? Do you have any cache plugin?
Anyway, to override this and make all buttons have the text aligned center please kindly add the code below to X > Launch > Options > CSS:
.tp-caption.rev-btn {
text-align: center !important;
}
Hope it helps.