look in 3col_leftNav.css
look for the line that has
#masthead {stuff here} or div#masthead {stuff here}
don't edit the stuff, unless it contains background-color
just add this
Code:
background-color:red;
or whatever the color you want.
so it should end up like this
Code:
#masthead {stuff here; background-color:red;}
If #masthead or div#masthead does not exist, because of some strange reason, then simply add
Code:
#masthead {background-color:red;}
Obviously replace red with the color you want, and 'stuff here' won't actually say stuff here, more lkely to say something like width: and height: etc.
|