How can I change the font weight of a specific menu in Impulse theme?

Hi,

I’m using Impulse and I want to change the font weight of one specific menu. I want to make the “Subscribe & Save” bold.

kj0_0-1680022940130.png

Here’s the link to the preview:

https://zmoopln5atc1vgty-44305055895.shopifypreview.com

Thanks!

Hi @orange1989

First, go to Themes → Edit code:

Next, you find the theme.css file and add this code at the end of the file:

.site-navigation li:nth-child(2) {
  font-weight: 800 !important;
}

We hope that it will work for you.