Forum Moderators: not2easy
Thanks for your help!
<Sorry, no personal URLs or example pages.
See Forum Charter [webmasterworld.com]>
[edited by: tedster at 6:41 pm (utc) on Jan. 15, 2006]
This is a box model issue caused by improper rendering by Internet Explorer. You're stuck in "MS sets the standards mode" as you think IE is rendering it correctly and Firefox is not -- just the opposite.
Reduce whatever element to make it work correctly in Firefox. I can tell it's a box model issue in IE because the same thing in Firefox also happens in Opera.
The answer to your problem is IECCSS. Internet Explorer Conditional Comments Style Sheet.
The most important rule for testing W3C compliant pages out is to test them in W3C compliant browsers, IE is not. Once your site is working in W3C complaint browsers such as Firefox 1.5 and Opera 8.51 then to get IE to render it correctly take the code you modifed which worked in IE and throw it inside this...
<!--[if IE]><link href="quirks-ie.css" media="screen" rel="stylesheet" title="city" type="text/css" /><![endif]-->
You only have to modify the specific specs in this IE quirks stylesheet. Keep in mind that this will still keep your page compliant, only IE looks inside comments and it will override your normal CSS only with specs you use in your IECCSS.
So with Firefox and Opera working, edit your IECCSS until IE works. Don't worry about the IECCSS editing to change Firefox, Opera or anything else. Just concentrate on IE when modding that file.
IECC page...
[msdn.microsoft.com...]
You can throw in custom scrollbars inside this SS while you're at it.
Be careful about posting URLs unless they are absolutely essential to your posts.
I commend you for using Web Developer toolbar, it's essential to much of what I work on.
Hope this helps!
John
If I set the right width low enough (say 50%) to work on an 800x600 screen, it ends up being way too narrow on larger resolutions. Any suggestions to get around this?