Can anyone help me. My health directory appears broken in firefox 3. i think it looks good in FF2 and IE. Any knowledgeable coder on DP ?
Firstly, your space2 div is 468px high: #space2 {main.css (line 46) float:left; height:468px; width:21px; } HTML: That's what causing the large white space. Secondly, the div under space2 has to have a defined width. You have to give it a width, like 600px or something. Here's what I got after correcting the above.
First, for the space2 div (bold, indicates changes): main.css (line 46) #space2 { float:left; height:10px; width:21px; } And ... index.html Line 20 - 22 <div id="space2"/> <div style="float: left; width: 630px;"> <div style="float: left;"> Note the position of the div that has been changed. It is the div below space2, which I also edited above. Regards, ST.
great, it looks good. but i see a difference in FF and IE In IE , there is a little space between header and top navigation.