Archived topic
Centering lgc columns within a Section
3 replies · Started by Roger on December 5, 2018
I'm having trouble finding a way to center lgc columns within a section. Specifically the team section on the About page of the site.
Whatever I try I seem to end up with uneven margins to the right and left of the section.
Grateful for your help with this!
Hi there,
looks a little more complex then your normal columns, maybe a simple flex box on the section inside container:
#team .generate-sections-inside-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
May want to wrap that in a media query...
Perfect - that did it. Thanks David!
You're welcome