Home › Forums › Support › Center logo This topic has 7 replies, 3 voices, and was last updated 4 years, 4 months ago by David. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts November 22, 2021 at 5:57 am #2014423 Charles I’d like to center my logo in the left column on my header. And maybe make it a tad bigger. I can’t see how to do this in customization. https://gettysburgconnection.org Thanks. November 22, 2021 at 7:42 am #2014572 DavidStaff Customer Support Hi there, try this CSS for centering the logo: @media(min-width: 769px) { .inside-header { display: flex; align-items: center; } .site-logo { order: -1; margin-right: auto; } } You can increase the logo size in Customizer > Site Identity. November 22, 2021 at 8:36 am #2014916 Charles That centers it vertically I think. Can I get it centered horizontally as well? THanks November 22, 2021 at 9:26 am #2015020 DavidStaff Customer Support Quick question – are you going to want to add other content to the left of the logo ( like you have in header widget )? November 22, 2021 at 12:18 pm #2015890 Charles For now no, but I don’t understand “( like you have in header widget )?” November 22, 2021 at 12:32 pm #2015944 YingStaff Customer Support Hi Charles, What David mentioned is the ads section in header widget. The ads section and your logo are fairly big, you can use this CSS to make the logo center: .site-logo { position: absolute; left: 50%; transform: translatex(-50%); } .header-widget { margin-left: auto; } But in smaller screen, they will overlap each other like this: https://www.screencast.com/t/hzWQP8ftY So I would not recommend centering the logo horizontally. November 23, 2021 at 5:35 am #2017462 Charles Hi, yes I’d like to center the logo on the left side of the white space not the center of the whole width. As if there were two columns. November 23, 2021 at 7:42 am #2017686 DavidStaff Customer Support Remove your current CSS and add this: @media(min-width: 769px) { .inside-header { display: flex; align-items: center; } .site-logo { order: -1; margin-right: auto; margin-left: auto; } } Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In