Mohd01
January 23, 2025, 11:00am
1
Hi all,
I want to change the content of my header so that my logo and the menus are to the far left and my login, cart, language/country selector and the search icon are to the far right.
This is an image that describes what I want to do:
Store URL: https://cngdxq-tk.myshopify.com/
Thanks In Advance,
Hi @Mohd01
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
In theme.liquid, paste the below code before
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hello @Mohd01 ,
Here are the steps to apply the necessary changes in your Shopify store:
In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
Locate Asset > base.css and paste the following code at the bottom of the file:
.header {
display: grid !important;
}
sticky-header > .page-width {
max-width: unset !important;
}
Let me know if you need further assistance!
Mohd01
January 23, 2025, 11:39am
4
Hey, that worked! But is it possible to increase the size of the menus and the space between them just a little bit more?
DaisyVo
January 23, 2025, 11:42am
5
Hi @Mohd01
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 (min-width: 769px){
header.header {
display: grid !important;
gap: 0 !important;
}}
Here is the result:
I hope this helps
Best,
Daisy
Mohd01
January 23, 2025, 11:54am
6
Hey, I did exactly what you said but it didn’t work. This is how it looks:
I want to increase the size of menu items (HOME, SHOP ALL, etc) and increase the space between them just a little bit
Hello @Mohd01 ,
Here are the steps to apply the necessary changes in your Shopify store:
In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
Locate Asset > base.css and paste the following code at the bottom of the file:
.list-menu--inline {
gap: 2rem !important;
}
Let me know if you need further assistance!
Mohd01
January 23, 2025, 1:01pm
8
Hey, It did increase the space between them, but didn’t make the items bigger, is it possible to do that maybe?
Thanks in advance!