How to decrease padding (top and bottom) on announcement bar and change logo position to the right because when i try to centre it significantly makes the logo smaller
Note this is on mobile, and i asked support and they said to contact community because it needs coding.
1 Like
Hi @ZephyrShop
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.header {
grid-template-columns: 1fr auto 1fr;
}
a.header__heading-link.link.link--text.focus-inset {
padding: 0px;
}
.announcement-bar__message {
padding: .5rem 0;
min-height: unset;
}
}
And save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
I dont think it works. Im checking on mobile and its not working
I dont think it works. Im checking on mobile and its not working