http://www.layoutsmart.com/contacttables/football/ It loads just like how I want it to in firefox, but in IE the right sidebar moves when you resize the page. How can i fix this? http://www.layoutsmart.com/css/1.css
1. There is no DTD. IE, especially, does not render according to current specs without it. X-browser compatibility is almost impossible if browsers aren't following the same rules. 2. You have a potload of syntax errors in your markup. Each browser has its own methods of dealing with errors in the markup. You cannot expect consistent results from invalid markup. Please correct your errors. It's hard enough to debug valid code. cheers, gary
made some changes so for the people looking now and noticing the page i listed is gone you can see what im talking about on the home page located at http://www.layoutsmart.com The code is valid now, however it is still moving in IE. Any help?
Ok well, I got it so both browsers interpret it the same way. I want to make it so they both don't make the right sidebar move in when its resized.
IE6 doesn't grok min or max widths, so it's trying to render a liquid width page. You could feed IE6 a separate width value. It would still act differently from Firefox et al, but your visitor won't be switching back and forth, so he'll never know. * html #wrapper { width: 965px; /*or whatever you think best*/ } Code (markup): cheers, gary
That did the trick for IE, is there something I can do to have it stay still in firefox also? Thanks for the help kk5st.