How can I center the text on my website highlight using code?

Could someone please tell me the code to centre the text on my website highlight. I can’t figure it out & it’s doing my head in :face_with_tongue: Thank you! Have attached a screenshot of the highlight in action.

www.annyanderyn.com

I tried .highlight__content-container {text-align: centre} which did not work. My website is narrative theme. I wouldn’t mind it being general code so anytime I use a highlight it would be central. Thanks!

1 Like

@annyeryn29 - spelling mistake in word center , you have put centre… change it to center, it will look like screenshot below

@annyeryn29

try this code please

.highlight--align-top .highlight__content-container, .highlight--align-top .highlight__image-container {
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    text-align: center;
}
1 Like