Re: increase letter spacing menu

Solved

How can I increase the letter spacing in my navigation menu?

INFRA
Shopify Partner
171 0 61

Hi there,

 

I would like the navigation menu to have the same font as the filter buttons (PT sans, character spacing 2 I think). How can I achieve that?  I can only change the font separately for the (sub)headers and body text in the editor I think!

 

website

 

Thanks!

Accepted Solutions (2)

saurav9005
Shopify Partner
100 15 25

This is an accepted solution.

In header page insert this code

<style>
.js .site-nav.mega-menu li a {
    letter-spacing: 7px;
}
</style>
please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!

View solution in original post

saurav9005
Shopify Partner
100 15 25

This is an accepted solution.

Yes, May be you can. try this

.js .gm-menu-installed .gm-item.gm-level-0 > .gm-target > .gm-text {
font-family: 'PT Sans' !important;
}
please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!

View solution in original post

Replies 9 (9)

saurav9005
Shopify Partner
100 15 25

This is an accepted solution.

In header page insert this code

<style>
.js .site-nav.mega-menu li a {
    letter-spacing: 7px;
}
</style>
please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!
INFRA
Shopify Partner
171 0 61

Hi! 

Which file should I add it to?

Screenshot 2023-08-02 at 17.07.12.png

 

I tried adding it in the editor but nothing happened 

saurav9005
Shopify Partner
100 15 25

open header.liquid and above code at the top.

please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!
INFRA
Shopify Partner
171 0 61

Thanks! And is it possible to apply PT Sans font to this too?

saurav9005
Shopify Partner
100 15 25

This is an accepted solution.

Yes, May be you can. try this

.js .gm-menu-installed .gm-item.gm-level-0 > .gm-target > .gm-text {
font-family: 'PT Sans' !important;
}
please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!
INFRA
Shopify Partner
171 0 61

thanks so much, that both worked perfectly! is there a way to only apply the letter spacing to the 4 menu items at the top? (not the dropdown submenus)

saurav9005
Shopify Partner
100 15 25

okay try this

<style>
.js .site-nav.mega-menu li.gm-level-0 a {
    letter-spacing: 7px;
}
</style>
please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!
INFRA
Shopify Partner
171 0 61

Thank you @saurav9005  Is it possible to make those 4 menu items in bold too?

I tried adding below line but it didn't do anything:

 

 

 font-style: bold;
 

 

 


@saurav9005 wrote:

okay try this

 

<style>
.js .site-nav.mega-menu li.gm-level-0 a {
    letter-spacing: 7px;
}
</style>

 


 

saurav9005
Shopify Partner
100 15 25

It is font-weight not font-style. please see the code

 

<style>
.js .site-nav.mega-menu li.gm-level-0 a {
    letter-spacing: 7px;
    font-weight:bold !important;
}
</style>

 

please hit Like and Mark as Solution, If this answer solve your problem.  If you find my reply helpful, a small Coffee Tip would make my coding heart soar!