Re: Increase Spacing Between Menu Items On The Studio Theme?

Solved

Increase Spacing Between Menu Items On The Studio Theme?

designworks_
Tourist
7 0 2

Hello, I need help with this. I want to increase the space between the 3 header menu items (they are in one row with me logo, which is centered) I have tried other solutions but they did not work.

Screenshot 2024-04-14 161348.png

 Thank you!!

Accepted Solutions (2)

diego_ezfy
Shopify Partner
2969 571 910

This is an accepted solution.

@designworks_@designworks_, do this to fix it in 20 seconds:

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

@media (min-width: 750px){
.list-menu--inline > * + *{
    margin-left: 20px;
}
}

diego_ezfy_0-1713136413962.png

 


You can change the 20px value to any value you wish.

If it helps you please click on the "like" button and mark this answer as a solution!

Thank you.

Kind regards,
Diego

View solution in original post

PageFly-Amelia
Shopify Partner
579 163 233

This is an accepted solution.

Hello @designworks_ 

 

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css

Step 3: Add code

/* You can change the value of 20px to the value you want */
.list-menu--inline {
   gap: 20px;
}

 

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)

PageFly-Amelia
Shopify Partner
579 163 233

Hello @designworks_ 

This is Amelia at PageFly - Shopify Advanced Page Builder app.

 

Can you provide me with your URL link so I can check it for you?

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

designworks_
Tourist
7 0 2
PageFly-Amelia
Shopify Partner
579 163 233

This is an accepted solution.

Hello @designworks_ 

 

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css

Step 3: Add code

/* You can change the value of 20px to the value you want */
.list-menu--inline {
   gap: 20px;
}

 

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

Made4uo-Ribe
Shopify Partner
8363 2000 2460

Hi @designworks_ 

Im not sure how much space you like. You can choose where ever you like. 

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:

 

.list-menu--inline {
    display: flex;
    justify-content: space-evenly;
}

 

And Save. 

Made4uoRibe_0-1713129203240.png

Or just simply add some gap between theme. 

 

.list-menu--inline {
    gap: 15px;
}

 

And Save. 

Result:

Made4uoRibe_1-1713129376380.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

diego_ezfy
Shopify Partner
2969 571 910

This is an accepted solution.

@designworks_@designworks_, do this to fix it in 20 seconds:

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

@media (min-width: 750px){
.list-menu--inline > * + *{
    margin-left: 20px;
}
}

diego_ezfy_0-1713136413962.png

 


You can change the 20px value to any value you wish.

If it helps you please click on the "like" button and mark this answer as a solution!

Thank you.

Kind regards,
Diego