Remove space around logo

Hi there,

I’d like my logo to fill the entire header. After searching the forum, I managed to remove the top white space by adding this:

div#logo {
padding: 0;
}

But as you see, the left and right white space is still there, and a little white space between the menu and logo. Thoughts?

Here is a screenshot.

Hi @jackchak,

I hope you are well today and thank you for your question.

Could you please share me your site URL where it’s displaying so that i can help you to achieve it?

Best Regards,
Movin

http://jackchakerian.com/

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

#masthead > .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}
span.site-name, span.site-name a {
    display: block;
}

Works great, Movin. Good to have it fixed, thanks.

You are most welcome here :slight_smile: