Jump to content

Recommended Posts

Posted

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

Posted

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:

h1 {
 background: black;
 color: white;
}

in the css file.

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...