Increasing height of header in mobile view - dawn theme

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?

url - deshoeshop com

2 Likes

Is this good?

Navigate to the code editor: Online store → Themes → Edit code → assets → base.css. Add the following to the end of the file:

@media screen and (max-width: 990px) {
  header.header.header--top-center.header--mobile-center.page-width.header--has-menu.header--has-social {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
1 Like

Hi @DSS5

Try 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: 989px){
header.header.header--top-center.header--mobile-center.page-width.header--has-menu.header--has-social {
    padding: 20px;
}
}