Can you please help me to delete the search and the bag icons, then align the entire navigation bar to the right of the page? Thank you!
Here is the link to my site: https://2cb7cc-ab.myshopify.com/
Pass: testpage
Can you please help me to delete the search and the bag icons, then align the entire navigation bar to the right of the page? Thank you!
Here is the link to my site: https://2cb7cc-ab.myshopify.com/
Pass: testpage
HI @NgocLe1
Do you mean like this?
Check 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 (min-width: 749px){
.header__icons.header__icons--localization.header-localization {
display: none;
}
}
@media screen and (min-width: 990px) {
.header--middle-left {
grid-template-areas: "heading icons navigation";
}
.header__inline-menu {
justify-self: end;
}
}
And Save.
This changes is only for the desktop.
I didnt remove the bag and search icon on the mobile.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you very much!