hi guys, can someone help to increase the height of header in mobile view only. as in screenshot below. logo is looking very tight on top and bottom margin… in desktop view its ok but in mobile it is not great. is there anyway to creat a gap between top and bottom margin in Header Logo?
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: 989px){
header.header.header--top-center.header--mobile-center.page-width.header--has-menu.header--has-social {
padding: 20px;
}
}