Hello, as shown on picture listed above, I want to completely remove the cart icon and to move header menu all the way to the right side where cart used to be. Also for Logo to be on absolute left side, and for the menu and search icon to be on absolute right side. I would like this to be shown on phone and pc the same, without any big spaces between icons. My theme is - Dawn version 11.0.0
1 Like
Hi, @ViktorS7
there is no possibility to change the icons position without accessing the code If you want to do this then don’t hesitate to send me to collaboration request.
Best Regards,
Rock Technolabs
Hello, how and where can i send it to you?
Please check DM @ViktorS7
Can you specify better the code category where i shall search?
Hi @ViktorS7
Would you mind to share your Store URL website? with password if its protected. Thanks!
yes, no problem
1 Like
Thank you for the information. 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-drawer {
grid-row: 1 / 3;
grid-column: 3 / 3;
justify-self: end;
}
.header__icons.header__icons--localization.header-localization {
justify-self: end;
margin-right: 35px;
}
a#cart-icon-bubble {
display: none;
}
}
- And Save.
- Result:
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like

