Forum Moderators: open
my site works fine on IE but when it loads into firefox the menus are all differently alligned right and left. the whole site is spacially screwed. how can i make my site firefox friendly (i use firefox)
chris
As for fixing your specific problems that would be impossible to make any determination as to what the problem might be without some examples of your code, what you used to build it and other information.
Note you cannot post the url of your site on this forum and any code you do post should be cleaned of specifics that would point to your site, just a fair warniing.
W3C Validator - HTML [validator.w3.org]
W3C Validator - CSS [jigsaw.w3.org]
I agree with thecoalman. Develop against Firefox and then apply IE fixes as needed (since IE is the most "broken" of all the browsers).
Also important is to make sure you are using a complete DOCTYPE that doesn't put IE into Quirks mode. When IE is in Quirks mode, it uses a box model that's different from the one in the W3 specs. The first line of you page should look something like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
PS- Personal URLs are not permitted, so don't post a URL to your site. You can, however, post the code from your page.
[edited by: Fotiman at 5:21 pm (utc) on Nov. 1, 2007]