I've changed the background color to black.. but now I need to change text colour to white.
Can anyone point out the css line and file that I need to edit to do this?
cheers
Printable View
I've changed the background color to black.. but now I need to change text colour to white.
Can anyone point out the css line and file that I need to edit to do this?
cheers
I'd imagine: in the same place as you put "background: black" or whatever you did, add "color: white". You should end up with something like:
in the css file.Code:h1 {
background: black;
color: white;
}
If you've changed the background some other way and don't know which files might contain which rules for the part you want to change (on whatever site this is), then you can use firebug to inspect the element and see what rules apply to it and what files they're in.
Hello
:-Dave