Slider Text

Is there a way to off center the text in the slider…to the left or right? And can the text on the slider only show the title of the post and not the category? Or is there a way to remove the text from the slider completely?

Thanks.

hey there

Hope you are having a good day and thank you for your question :slight_smile:
Please add this CSS in appearance - customize - additional CSS
1.

/*Text on the left side*/
.flex-caption {
text-align: left;
}
/*hide category*/
.flex-caption .post-categories {
display: none;
}

/remove all text/
div.flex-caption {
display: none;
}

Thanks!
Colorlib Support Team

I added in these codes to the CSS. So now if I want to alter the text’s placement - where will I go to change that?

You can change it by editing the following CSS code from left to right or centre.


/*Text on the left side*/
.flex-caption {
text-align: left;
}