Change the color of a nav item in Venture theme

Hi,

I want to change the color of one item from the nav menu but I don’t have any idea how :slightly_smiling_face:

Basically, i want something like this but I can’t figure out how to code it.

This is what I want:

Asibruh_0-1662205224682.png

And this is what I have:

Asibruh_1-1662205245622.png

My site is: www.bruxo.ro ; my pass is: neanao

Thank you in advance,

Alex.

@Asibruh

Add the following CSS code to your assets/theme.scss.liquid bottom of the file.

.site-nav--active .site-nav__link {
    color: #fff !important;
    background: #d8232f !important;
}

Thanks!

1 Like

Thank you so much,

But the thing is, I would like only the “Promotii” section to be red at any moment. the rest can be as they are now.

Is it possbile to help me with that? :slightly_smiling_face:

Thank you in advance,

Alex.

1 Like

@Asibruh

Add the following CSS code to your assets/theme.scss.liquid bottom of the file.

.site-nav li:last-of-type a {
    display: inline-block;
    background: #d8232f !important;
    color: #fff !important;
    padding: 14px !important;
}

Thanks!

1 Like

@dmwwebartisan ,

Thank you !