Menu Bar
-
I have used the following CSS to change the menu color
a:link {color:#FFA500;} /* unvisited link */
a:visited {color:#FFA500;} /* visited link */
a:hover {color:#FFA500;} /* mouse over link *//*Changing text link and background color on menu*/
.site-header .main-navigation a, .site-header .main-navigation a:visited {
color: #FFFFFF;
background: #008000 none repeat scroll 0 0;
}
/*Changing text and background color on menu hover*/
.site-header .main-navigation a:hover, .site-header .main-navigation a:hover:visited {
color: #FFFFFF;
background: #598000 none repeat scroll 0 0;
}
.site-title a, .site-description {
color: #FFFFFF;
}My question I still have black color as in screenshot, how do i change that to some other color
- The topic ‘Menu Bar’ is closed to new replies.