Hi
I had the same issue.. solved it eventually with the following code in CSS Inserts:
Code:
/* For HOVER */
ul.rMenu-hor li.current_page_item a:link,
ul.rMenu-hor li.current_page_item a:visited,
ul.rMenu-hor li.current_page_item a:active,
ul.rMenu-hor li.current_page_item a:hover {
background: #26be71 !important;
color: #000000 !important;
}
/* For CURRENT */
ul.rMenu-hor li.current_page_item a:link,
ul.rMenu-hor li.current_page_item a:visited,
ul.rMenu-hor li.current_page_item a:active,
ul.rMenu-hor li.current_page_item a:hover {
background: #26be71 !important;
color: #000000 !important;
}
whereas #26be71 is the colour that I wanted to have for hover.
Additionally, in Page Menu Bar > Background Colour: Hover, I set the colour for the currently selected item.
best, J