Asibruh
1
Hi,
I want to change the color of one item from the nav menu but I don’t have any idea how 
Basically, i want something like this but I can’t figure out how to code it.
This is what I want:

And this is what I have:

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
Asibruh
3
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? 
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