Internet Explorer 8

For general web development questions that are not specifically related to CSS HTML Validator. This includes (but is not limited to) general HTML, CSS, Accessibility, JavaScript, and SEO questions.
Post Reply
fredtarbox
Rank 0 - Newcomer
Posts: 4
Joined: Thu Aug 28, 2008 9:06 am
Contact:

Internet Explorer 8

Post by fredtarbox »

Are there any thoughts or aids out there which will help not putting
<!-- Use IE7 mode -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
on every page of the web site?

like an option in html validator which will find all the problems so we can fix them.

fred
User avatar
CaryD
Rank II - Novice
Posts: 46
Joined: Sun Oct 01, 2006 2:18 pm
Location: CA

Post by CaryD »

If your pages only work with IE 7 then that could be a problem. If your pages work fine with FF, Opera and Safari as well as IE 6 and 7, then you shouldn't need any new code.
User avatar
MikeGale
Rank VI - Professional
Posts: 726
Joined: Mon Dec 13, 2004 1:50 pm
Location: Tannhauser Gate

Post by MikeGale »

Hi Fred,

Have you got pages that pass validation in CSE and work within IE 7 but fail when browsed by IE 8?
fredtarbox
Rank 0 - Newcomer
Posts: 4
Joined: Thu Aug 28, 2008 9:06 am
Contact:

Post by fredtarbox »

the page

www.goace.com.index.html displays correctly in ie 7 but puts the left hand column below the right hand column in ie 8.

do you wish me to send it and the images or can you get it from the web?

Image shows the validator output. no errors found.

what else can i do to help?
fredtarbox
Rank 0 - Newcomer
Posts: 4
Joined: Thu Aug 28, 2008 9:06 am
Contact:

Post by fredtarbox »

CaryD wrote:If your pages only work with IE 7 then that could be a problem. If your pages work fine with FF, Opera and Safari as well as IE 6 and 7, then you shouldn't need any new code.
yes, they work fine with all of them -- but microsoft says i have to add the following two lines to EVERY page to make them work with ie8.

<!-- Use IE7 mode -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
If i have to visit each page, i want to know what to change so the pages will work with both ie 7 and ie8. i am clueless right now.
fred
User avatar
MikeGale
Rank VI - Professional
Posts: 726
Joined: Mon Dec 13, 2004 1:50 pm
Location: Tannhauser Gate

Post by MikeGale »

I ran some very quick tests on the site.

1) It displays differently in IE, FF, Opera and Safari.

2) It has nested tables with absolute widths.

...

If I was tackling it I'd probably proceed as follows:

AIMS:

1) Reduce table nesting, reduce number of table cells, make it more "flowing".

2) Avoid absolute sizing of table elements and other things.

3) Compact styling into a single CSS sheet.

Then I would rebuild a chosen page as simply as possible with these guidelines. Test often cross browser. (Looks can be similar but would not be identical.)

When done I'd rework the other pages into the new design.
fredtarbox
Rank 0 - Newcomer
Posts: 4
Joined: Thu Aug 28, 2008 9:06 am
Contact:

Post by fredtarbox »

i will try each suggestion one by one. need to reinstall ie 8 on some machine it broke so much softeware.

I hope if we find what caused the difference in ie 8 we can get a warning at least.
may take a while for a reply.
MikeGale wrote:I ran some very quick tests on the site.

1) It displays differently in IE, FF, Opera and Safari.

2) It has nested tables with absolute widths.

...

If I was tackling it I'd probably proceed as follows:

AIMS:

1) Reduce table nesting, reduce number of table cells, make it more "flowing".

2) Avoid absolute sizing of table elements and other things.

3) Compact styling into a single CSS sheet.

Then I would rebuild a chosen page as simply as possible with these guidelines. Test often cross browser. (Looks can be similar but would not be identical.)

When done I'd rework the other pages into the new design.
Post Reply