How can I remove padding around my header logo in the context theme?

Im using the context theme and cant seem to figure out how to remove the padding around my logo. I cant find a header.liquid in sections or .css file in assets as the other answers point to.

Store url: NinjaToolSupply.Com

Password: password

Thank you.

Hi @DarmorGamz

Welcome to Shopify Community.

Aibek is here from Speedimize.io

There are no paddings around the picture. The fact is that the image itself has extra space. It is better to cut down and leave only the logo itself. Then there will be no such large margins.

Hope that helps you.

Thank you for the help @Anonymous , It must of been a silly mistake. However I do still have a small amount of margin/padding at the top of the logo with that fix.

Hey @DarmorGamz

Thanks for getting back to me so quickly.

In the index.css find .header–default

@media (min-width: 60em) {

. header–default {
padding: 0 0 10px 0;
}
}

Just replace with the style on top.

Hope that helps you.

1 Like

@DarmorGamz

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.header__logo-wrapper{
 margin :0 !important;
}
1 Like