Reply To: Centering logo on mobile devices?

Homepage Community Forums inSync Theme Support Centering logo on mobile devices? Reply To: Centering logo on mobile devices?

#18629
Wes
Moderator

    Try adding this code to your CSS in the Responsive Section –

    .header-image .site-title a {
    	background-position: center !important;
    }

    If you’re not editing the CSS directly, then you’ll need to add this as well –

    @media only screen and (max-width: 1023px) {
    
        .header-image .site-title a {
    	background-position: center !important;
        }
    
    }