Archived topic
Central Align text within a container that is using display: table;
3 replies · Started by Mark on October 20, 2022
Hello,
I'm in the process of building a new site and I have a section with two columns of text. They have text effects on e.g. a strike through and animated underline, and using display: table. I think this means I can't vertically align them, but wanted to double check if there was a workaround.
Thanks in advance!
Hi there,
you could try this:
1. Add this CSS:
.center-content .gb-inside-container {
width: max-content;
margin: auto;
}
2. Select each of the Column Containers and in Advanced > Additonal CSS CLass(es) add the center-content class
Works perfectly, thanks, really appreciate it!
Glad to hear that!!