Results 1 to 4 of 4

Thread: Headings not working in Firefox

  1. #1
    Join Date
    Jun 2008
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Headings not working in Firefox

    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

  2. #2
    Join Date
    Jul 2007
    Location
    Azerbaijan, Baku
    Posts
    144
    Thanks
    11
    Thanked 27 Times in 25 Posts

    Default

    Barbara,
    I didn't find white text in css, but change background color:
    Code:
    #header h1 {
    color:#505050;
    background-color:inherit;
    width:350px;
    margin:8px 0 10px;
    font-size:10px;
    float:left;
    }
    to this:
    Code:
    #header h1 {
    color:#505050;
    background-color:green;
    width:350px;
    margin:8px 0 10px;
    font-size:10px;
    float:left;
    }
    Or change green to your color

  3. #3
    Join Date
    Jun 2008
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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;
    }

  4. #4
    Join Date
    Jul 2007
    Location
    Azerbaijan, Baku
    Posts
    144
    Thanks
    11
    Thanked 27 Times in 25 Posts

    Default

    Ah sorry, didn't read header... I looked with firebug. Couldn't see this there:

    Code:
    #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

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •