Change color settings of one page
I want to change the color settings of my start page with css. Normally the items in the menu are white and on hover/select black. Now I want only for my start page that the menu items are normally black and on hover/select blue. How can I realize this? Which css do I need to paste in my start page?
With best regards
Comments
it would look something like this for an active item and on hover
#Top_bar .menu > li.current-menu-item > a, #Top_bar .menu > li.current_page_item {
color:red !important;
}
#Top_bar .menu > li.hover > a {
color:red !important;
}