Hi everyone,
I’m using the Dawn theme for my Shopify store and I’d like to customize the header layout (only in mobile).
Here’s what I want to achieve:
Here’s a preview image for reference 
Store preview link (for context):
https://3tuvlpx1gctxbzmo-93050175853.shopifypreview.com
If anyone could guide me with the CSS/Liquid code changes required (for mobile ), it would be super helpful. 
Thanks in advance!
You can use this code and check
@media (max-width: 749px) {
.header-wrapper .header__heading-link {
padding-left: 48px;
}
.header__icons .header__icon--search {
position: absolute;
left: 60px;
}
}
Best regards,
Dan from Ryviu: Product Reviews App
tim_1
3
There is a space after first dot which needs to be removed.
Also, @Sivadarshan – something is wrong with your header on tablet (width between 750 and 990px)…
Hello @Sivadarshan,
Please add this following code into your base.css file:
@media only screen and (max-width: 767px){
.header__icon {
position: absolute;
left: 54px;
}
.header__heading{
text-align: center;
align-items: center;
}
}
Here is the result: