Click to See Complete Forum and Search --> : [RESOLVED] CSS Internet Explorer / Firefox Question


theflyingminst
07-05-2008, 09:26 PM
Hi, I am getting getting very different results between I.E. and Mozilla Firefox with this CSS and I was wondering if anyone can tell me where the problem might be.

In I.E., the boxes are too big and therefore aren't side by side like they are supposed to be.

Link: http://alteregosofthestickman.com/blog/?view=plink&id=114

CSS Code:

#d_contentbody_right {
float:right;
left:508px;
width:248px;
padding:6px;
background-image:url(template_img/bg_box.gif);
background-repeat:repeat-x;
border-bottom:solid 1px #e2e1e1;
border-right:solid 1px #e2e1e1;
z-index: 1001;
}

Thank you.

Centauri
07-05-2008, 10:12 PM
For starters, the line <!-- Include file for CAPTCHA configuration --> is putting IE into quirks mode - the doctype needs to be the first thing on the page.

theflyingminst
07-05-2008, 10:42 PM
That was EXACTLY the problem, thank you very much Centauri!