Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Short answer:</p> <ul> <li>bs_ext is 824px wide, so any browser (not just IE6) will display a scrollbar if browser size goes below that</li> <li>cd is positioned 200+530px from the left and is 294px wide, meaning it extends to 1024px which is too wide (any browser uses about 16 pixels of the window's width to be used for a vertical scrollbar)</li> </ul> <p>Also:</p> <ul> <li>Go with bvd's suggestion; don't try to optimize for IE6 too much</li> <li>Try to build the site in IE6 first and modern browsers later.</li> </ul> <p>Solutions:</p> <p>The following CSS will remove any scrollbars on the html/body of your page. A terrible fix, as you're destroying the user's tools to navigate your site:</p> <pre><code>html, body { overflow: hidden } </code></pre> <p>Also, if you want a footer that sticks to the bottom of the page (I'm not sure if you do but it looks that way), try to follow this tutorial:</p> <p><a href="http://ryanfait.com/resources/footer-stick-to-bottom-of-page/" rel="nofollow">http://ryanfait.com/resources/footer-stick-to-bottom-of-page/</a></p> <p>Lastly, if you want more help, I suggest you post a picture or design of what you're trying to achieve. A lot is possible in IE6, if you know how to work around CSS imperfections that browser has.</p> <p>A final tip is modernizr: <a href="http://www.modernizr.com/" rel="nofollow">http://www.modernizr.com/</a> Modernizr solves a lot of IE6 issues, but not all. Also, you'll have a JavaScript dependency in your website which will affect at least IE6 and 7 users.</p> <p>Good luck!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload