• Any idea how I can centre the 4 logos at the bottom of this page? (both horizontally and vertically would be great but predominately horizontally).

    [ redundant link removed ]

    • This topic was modified 5 years, 9 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello there,

    It looks like you have the horizontal centering sorted out. The four logos are displayed in a flex box container. This element has the following styles:

    
    #mt-clients .grid.grid-pad {
        display: flex;
        justify-content: center;
    }
    

    The justify-content: center is handling the horizontal centering. If you add:

    align-items: center;

    under justify-content to become:

    
    #mt-clients .grid.grid-pad {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    

    I believe this should vertically center them as well.

    Scott

    Thread Starter craigmckee

    (@craigmckee)

    Perfect, thank you – that worked a treat!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Centre logos’ is closed to new replies.