Inspect HTML and CSS in real-time with Developer Tools:
developers.google.com/chrome-developer-tools/
developer.mozilla.org/en-US/docs/Tools
Right click item, Inspect Element... look for "active" in your Elements pane, highlight, see if there's any styling set in your Styles pane... there isn't any specific to the li.active so we just need to write one (as opposed to copy the current).
In Chrome you can go "Copy Selector" and it will create a CSS Selector for you... sometimes this is fine... sometimes it creates way to specific of one.
The id "current" is being placed on your Active menu items... menu-item-wrapper is where the color is being set...
#current .menu-item-wrapper {
color: #CA7F7F
}
The following users have thanked you: Eduardo Teixeira