Want to change menu bar colour. Where is text to edit in style.css or function.php? Where in file?
Want to change menu bar colour. Where is text to edit in style.css or function.php? Where in file?
The style rule setting the menu bar colour is:
#access {
background: none repeat scroll 0 0 #0000FF;
display: block;
float: left;
margin: 0 auto;
width: 940px;
}
So you just need to put this either at the end of the twenty ten style sheet or (much, much better IMHO) create a child theme and put it in the child's style.css:
#access {
background-color: #nnnnnn;
}
(where #nnnnnn represents the colour you want)
Works for me in FF. Haven't tried it elsewhere.
Cheers
PAE
You must log in to post.