Hello,
Any way I can make more room in Dawn theme Mobile header to make the logo appear bigger,
I already increased the width of logo to the max with a different code. I would like to decrease the space between the cart and search icon, also move menu hambuger to the left more and if possible make the announcement bar thinner. Thank you.
pw test123
1 Like
Hi @Lavished
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 ātheme. Liquidā file. Find the tag and paste the code below before the tag.
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Hi @Lavished
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px){
header.header {
padding-left: 10px !important;
}
summary.header__icon.header__icon--search > span {
width: fit-content !important;
}
summary.header__icon.header__icon--search > span > span.svg-wrapper:nth-child(1) {
width: unset !important;
}
summary.header__icon.header__icon--search {
width: fit-content !important;
}
}
Here is the result:
I hope this helps
Best,
Daisy
Welcome! Would you mind hitting ālikeā as well? Thanks!
I didnāt realized it caused a problem , or maybe something else did it, but now my mobile page toggles from side to side, right to left vice versa. 
when I deleted the code the problem went away once I added it again the problem returned,- thank you.