How do I change hover color and tab colors and text color on the navigation tabs of the Blogmu templete not the adminstrator bar?
How do I change hover color and tab colors and text color on the navigation tabs of the Blogmu templete not the adminstrator bar?
Hiya!
To make changes to the background color of the Nav list items, you'll need to open the style.css file in your child theme folder and add the necessary changes to the bottom of the file.
For example:
#nav li {
background: #CCCCCC;
}
This affects the list item in their default state. You'll also want to change their hover sate and possibly the "selected" state as well. Just add them all in your style.css file:
#nav li a:hover
#nav li #home
#nav li .selected
You can take a look at the base.css file to see how they are formatted by default, and if you've not checked out a tool called firebug, we highly recommend it! :D
Tammie even has a tutorial on using it available here:
http://buddydress.com/2010/06/firebug-installing-discovering-and-using-the-tutorial/
Thanks!
You must log in to post.