HI,
HELP I CAN NOT CHANGE THE COLOR OF TEXT AND TAGS … HOW DO I?
THANKS
I need an answer to this too!
log into Wp Dashboard, Hover over appearance, then click on editor…
You should be taken to “Stylesheet” Or style.css….same thing…
hit ctrl+F look for :
.nav ul li a {
you main color is controlled by this css entry…
Mine is changed, but heres the whole thing…
.nav ul li a {
display: inline-block;
padding: 5px 0;
color: #555;
text-decoration: none;
font-weight: bold;
}
Your gonna want to change the color number…heres a good site, for some.
http://html-color-codes.com/
find the color code you want and replace, the color number… you should use the # symbol infront of it…so for example #CCCCCC would be gray.
if you want to change the color while hovering, change the color in:
.nav ul li a:hover {
display:inline-block;
padding:5px 0;
color:#c9b69a;
text-decoration:none;
font-weight:bold;
}
thats it.. Pretty simple..