[Resolved] Centering lgc columns within a Section

Home Forums Support [Resolved] Centering lgc columns within a Section

Home Forums Support Centering lgc columns within a Section

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #749288
    Roger

    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!

    #749512
    David
    Staff
    Customer Support

    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…

    #750079
    Roger

    Perfect – that did it. Thanks David!

    #750354
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.