Highlight a menu item permanently

Hi -
How can I highlight one of the menu items permanently?
It should still have the roll over affect, I just want it to always have a different color

Thank you

Hi,

Use this css code:


navbar-default .navbar-nav > li > a {
    color: #ee2d2d;
}

Thank you,

Cristian

Hi!
Thanks for your response -
Mmm, that turned all the li text in the menu a different color.
I’d like to change the background color of just one item - see this as an example (their Donate" button is always highlighted in orange.) http://bestfriends.org/

Thoughts?
Thank you in advance!

Hi,

Try this css code:

.navbar-default .navbar-nav > li:last-child{
background-color: #eb4949;
color: #fff;
}

Thanks,

Cristian

Oh, that is IT!!!
Thanks a million!

@shetlandshake,

You’re welcome, I am glad that I could help you.

Thanks,

Cristian