Forum Moderators: not2easy

Message Too Old, No Replies

Firefox Quirk - Renders properly in NN7,Safari,IE,Opera, etc

         

noen

5:27 pm on Jun 2, 2004 (gmt 0)

10+ Year Member



The page renders in every browser I can test except for Firefox.

The page is laid out with a float left and a float right in a parent container to create a two column layout.


<div class="right">
<div id="homeBar">..Links and images..</div>
<div id="banner">..Link and image..</div>
<div id="quickLinks">..Links and images..</div>
<div id="pageContent">
<div id="title">..Images and text..</div>
<div class="spacer"></div>
<div id="contentContainer">
Main Page Content
</div>
</div>
</div>

The homebar, banner and quicklinks are pushed left under the float: left column, but the pageContent div is properly floated left.
Does anyone have any insight as to why the first three div's aren't being floated, but the rest of the page is?

Thanks

stevenmusumeche

5:31 pm on Jun 2, 2004 (gmt 0)

10+ Year Member



Without your CSS code, we can't help much.

noen

5:55 pm on Jun 2, 2004 (gmt 0)

10+ Year Member



Found the problem.

When a table in the floated column was set to 100% width, it was using the the PAGE width rather than the float width. This was only affected in Firefox, IE 5.01 and IE 5.5 though.

I changed the table in the content to use fixed widths and it works as expected.