You have to go to your theme options and choose custom style. If you put for example this in:
body
{
color: #FFFFFF;
}
h1{
color: #FFFFFF;
}
It will change some of your text and headings to white. So just add everything you want to change here and don’t forget to press save 🙂
Many many thanks, it worked perfectly! I am still having the same issue with my menu, when its not hovered or selected the text is black on a black background and I need that to be white as well. Is there a custom code to call up to make that text be white?
You could try to add this and change the colour to what you want.
#nav a {
color: #FFFFFF;
background: #000000;
}
Thanks for your speedy response! It seems to have worked partially but only at certain times. Any idea why that would be?
yes probably because a can have more options:
a:link {color:#FFFFFF;} /* unvisited link */
a:visited {color:#FFFFFF;} /* visited link */
a:hover {color:#FFFFFF;} /* mouse over link */
a:active {color:#FFFFFF;} /* selected link */
so you could try to add css for every state of the link you need… Like this:
#nav a:visited {
color: #FFFFFF;
background: #000000;
}
You have been a life saver, thank you so much for all your help.