IE trouble!

Permabanned
Joined
25 Oct 2004
Posts
9,078
Hiya all, working on a site for a charity, so no money is involved, im after some assistance with getting it working in IE7 (IE6 would be great but too much hassle i think)

Anyway the site is fine in firefox, looks fine at 640x480 and up (using zoom feature).

Problem is in IE7 its a total mess, would anyone be so kind as to take a look for me and offer any suggestions. You can view the site at www.rtm-digitalmedia.co.uk/torcab/index.php
 
Try coding in XHTML 1.0 Strict - you should find that helps render across browsers in a way that you will expect.
 
Doubled checked my index.php and that validates with xhtml 1.0 strict no problem so no idea why its a total mess in IE7.

Looking at the page again, it appears that the font size you use is what causes the page to mess up, is it possible to force a specific size font, the page looks fine on my system and when zoomed in, but if i use zoom text only the layout goes to crap.

EDIT: Looks like the font size of 1em in firefox is fine for me (10px forced and it displays fine) but IE7 doesnt wanna play ball either way.
 
Last edited:
Is the font size on your system set smaller than standard?

Also, just because a page validates doesn't mean it'll work in all browsers - as you've just discovered.
 
Went through the css and changed all references to "em" font sizes and made them static along with left/right column dimensions and the page now renders fine in both FF and IE7.

Seems like using em values can cause more trouble than they are worth.
 
Went through the css and changed all references to "em" font sizes and made them static along with left/right column dimensions and the page now renders fine in both FF and IE7.

Seems like using em values can cause more trouble than they are worth.

em is great. Set your body font size to 62.5% and then your container(s) font size to 1.2em and it should be smooth sailing.
 
Back
Top Bottom