How to make mobile header height shorter

Solved

How to make mobile header height shorter

samueljoonjung
Explorer
74 0 18

How do I make the height of the header shorter here. And the icons and logo to be smaller along with it. 

samueljoonjung_0-1747888311135.png

 

Accepted Solution (1)

AnnieHy
Shopify Partner
3 1 0

This is an accepted solution.

@samueljoonjung 
Hello

This is code to make header shorter and icon smaller

@media screen and (max-width: 768px){
header.header .header__heading-logo-wrapper > img {
    width: 35px !important;
}
header.header {
    height: 38px !important;
}
header.header summary.header__icon.header__icon--menu svg {
    width: 15px !important;
}
header.header summary.header__icon.header__icon--search svg {
    width: 15px !important;
}
header.header a#cart-icon-bubble svg {
    width: 35px !important;
}
}


You can add code here:  https://prnt.sc/Kdn1QhpAvDUG

AnnieHy_0-1747896785882.png

 


 

View solution in original post

Replies 5 (5)

samueljoonjung
Explorer
74 0 18

my website url is www.whosociety.com

Mustafa_Ali
Trailblazer
501 50 99
<style>
@media screen and (max-width: 767px) {
.header {
    margin-top: -10px !important;
    margin-bottom: -1rem !important;
 }
}
</style>

Mustafa_Ali_0-1747889522414.png

hey @samueljoonjung dear follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution

 

GTLOfficial
Shopify Partner
880 182 192

Hello @samueljoonjung 
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

@media screen and (max-width: 749px) {
.header.header--middle-left.header--mobile-center.page-width.header--has-menu.header--has-account {
  margin-top: -0.6rem !important;
  margin-bottom: -1rem !important;
}
}

result

8.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

AnnieHy
Shopify Partner
3 1 0

This is an accepted solution.

@samueljoonjung 
Hello

This is code to make header shorter and icon smaller

@media screen and (max-width: 768px){
header.header .header__heading-logo-wrapper > img {
    width: 35px !important;
}
header.header {
    height: 38px !important;
}
header.header summary.header__icon.header__icon--menu svg {
    width: 15px !important;
}
header.header summary.header__icon.header__icon--search svg {
    width: 15px !important;
}
header.header a#cart-icon-bubble svg {
    width: 35px !important;
}
}


You can add code here:  https://prnt.sc/Kdn1QhpAvDUG

AnnieHy_0-1747896785882.png

 


 

samueljoonjung
Explorer
74 0 18

Thank you very much