how do I make navigation titles bold in prestige?

hi,

I found this

.Header__MainNav {
margin-right: 45px;
}

and I added this to it

font-weight: bold;

like this

.Header__MainNav {
margin-right: 45px;
font-weight: bold;
}

but that makes the menu items bold and I wanted only the menu titles bold and not the items

how?

thank you!

Hi @sugarhai

Please add below code in your theme.css file

.Header__MainNav ul li.HorizontalList__Item a{font-weight:bold!important;}

Best Regards,

Parth Bhut

1 Like

hi, thank you! it works but it makes the titles AND the items bold, is there a way to make only the title bold?

Welcome to shopify community.

Please share your store URL and if your store is password protected then please provide password too.

Thank you.

1 Like

Hi @sugarhai ,

Please add code:

.Header__MainNav .HorizontalList__Item >a {
    font-weight: bold;
}

Hope it helps!

1 Like

yay! it worked, thank you

1 Like