Log in

View Full Version : Headings not working in Firefox



Barbara
07-01-2008, 02:12 PM
Hello All

Headings in the main body of my pages aren't working properly in Firefox. In IE they have a green background and white text, but in Firefox they are just black and big.

www.countrysidefoundation.org.uk

The CSS file for the page layout can be found at
http://www.countrysidefoundation.org.uk/andreas01.css

Thanks.

Barbara

allahverdi
07-01-2008, 02:27 PM
Barbara,
I didn't find white text in css, but change background color:

#header h1 {
color:#505050;
background-color:inherit;
width:350px;
margin:8px 0 10px;
font-size:10px;
float:left;
}


to this:

#header h1 {
color:#505050;
background-color:green;
width:350px;
margin:8px 0 10px;
font-size:10px;
float:left;
}


Or change green to your color ;)

Barbara
07-01-2008, 03:01 PM
Hello

Thanks for that.
I changed that, but that only affected the date on top of screen.

I think the relevant header for that part of the page is this code... as I said in fire fox its big, black and with no green coloured background. Thanks:)

#contentwide h1, {
font:11px Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
color:#ffffff;
background-color: #669933;
margin:3px;
padding:3px;
height:auto;
width:400px;
}

allahverdi
07-01-2008, 03:19 PM
Ah sorry, didn't read header... I looked with firebug. Couldn't see this there:


#contentwide h1, {
font:11px Verdana,Arial,Helvetica,sans-serif;
font-weight:bold;
color:#ffffff;
background-color: #669933;
margin:3px;
padding:3px;
height:auto;
width:400px;
}
Reply With Quote