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. 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!
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: }
I believe you may need to add 'display:inline;' to floats with a margin (or padding) - to fix an IE issue.