Understood, Thank you. I have an image above a text link and I'm not able to align the image in the centre. Just the text is aligned to the center. How do I align the image?
I will need more info about the setup, maybe if you can share the front-end link I can check and give you a CSS code.
But in general, you would add a CSS class to the container and the Image block.
For example, if you have the class of "the-content" for the container and "the-image" for the image a CSS like this should do the trick:
.the-content {
text-align: center; /* Centers inline elements and text within the container */
}
.the-content .the-image {
display: block; /* Make the image a block-level element */
margin-left: auto; /* Auto margins work with block-level elements to center them */
margin-right: auto;
}