Serious CSS help needed!

Discussion in 'HTML & Website Design' started by quidigi_2, Jan 30, 2009.

  1. #1
    Not being that great at css... I have a major issue with my site not displaying correctly in Firefox. Divs align fine in IE but wrap in FF. It's all a mess as I've had to try and tweak previous design and am lost. Any help greatly appreciated. I've troubleshooted myself to madness.:eek:

    Site is:
    www.face-place.co.uk/staging/treatments.php

    Css is at:
    www.face-place.co.uk/staging/interface/place.css

    Thanks so much!
     
    quidigi_2, Jan 30, 2009 IP
  2. Delicocuk_mg

    Delicocuk_mg Active Member

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    86
    #2
    Hi,
    1.) You have forgotten to close the meta tag with "/>"
    Yours:
    <meta name="description" content="Nestled behing Marks and Spencer ..."
    To be:
    <meta name="" .... />

    2.) you didn't need this
    <table class="main_table" cellspacing="0" cellpadding="0" border="0">

    3.)
    .main_col_big{
    float:left;
    margin-left:188 px;
    }
    -----------------------------
    .nav_col
    {
    float:left;
    width: 188px;
    }

    4.)
    .main_col_big .sign
    {
    color: c9d2b3; -> here you forgot #
    color:#c9d2b3:
    }
     
    Delicocuk_mg, Jan 30, 2009 IP
  3. Website Design Perth

    Website Design Perth Peon

    Messages:
    66
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I believe you may need to add 'display:inline;' to floats with a margin (or padding) - to fix an IE issue.
     
    Website Design Perth, Jan 31, 2009 IP