![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a Page that has one left div with id "sidebar", floats left and has a fixed width of 140px, then another div with id "content", a left margin of 160px, and a fixed width of 570px. I do not have an exact solution. But... |
#3
| |||
| |||
|
|
I do not have an exact solution. But... This is almost always a width problem especially since you are using a fixed width for the content area. FF and IE handle widths differently (although IE is usually the cramp). Increase the main content size, or set it to 100%. -- jmm (hyphen) list (at) sohnen-moe (dot) com (Remove .AXSPAMGN for email) |
#4
| |||
| |||
|
|
Jim Moe wrote: I do not have an exact solution. But... This is almost always a width problem especially since you are using a fixed width for the content area. FF and IE handle widths differently (although IE is usually the cramp). Increase the main content size, or set it to 100%. If you check the CSS comments I included, you'll notice that I had to specify a width because Opera would force the content area to be bigger than it's container [Very weird]. and IE also failed to handle the width of the block and push it down, so I had to specify a width which is 5px smaller (using "EXPRESSION") Setting the width(s) to 99% helps IE a lot. Or even 99.9%. |
#5
| |||
| |||
|
|
I have a Page that has one left div with id "sidebar", floats left and has a fixed width of 140px, then another div with id "content", a left margin of 160px, and a fixed width of 570px. Here is the CSS: #news{ background-image: url(images/body-repeat-news.gif); width: 730px; padding: 15px; } #news #sidebar{ width: 140px; } #news #content{ margin-left: 160px; width: 570px; /* Weird Opera Bug */ width: expression("565px"); /* Fix IE bug where object gets pushed down */ } The page looks fine in IE and Opera, but in firefox it loads properly "SOMETIMES". Here is a link to the page http://www.hiazle.com/news Please note: all content on this page is "automatically" generated so, it appears that Firefox loads properly if there is no delay in generating page content. I'm not sure if that's the case. All help will be appreciated. |
![]() |
| Thread Tools | |
| Display Modes | |
| |