View Single Post
Old 11-12-2012, 05:21 PM   PM User | #28
Ace.....
New Coder

 
Join Date: Nov 2012
Location: France
Posts: 78
Thanks: 20
Thanked 0 Times in 0 Posts
Ace..... is an unknown quantity at this point
...
Internet Explorer 9.......... Sorted!

Okay the display problems in iE9 relate to the need for a doc declaration.

Originally I had been using:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
I then removed it because I was using new html5 declarations.

Apparently, FFox & Chrome can manage without a doc declaration.
Research informed me that iE8 & above require it.

So I chose the new HTML5 declaration, which is incredibly simple, and is supposedly backwards compatible (I read).

Code:
<!DOCTYPE html>
I also learned that I must clear the web browser cache every time I run a test.
I discovered this, when FFox didn't like my // method to disable certain style declarations.
I deleted them completely, yet FFox console still found them, even after closing the tab and starting again.

Actually, I have found FFox console to pick up far more errors than Chrome console.
It reminded me I must declare the character encoding (which I did).

With trepidation I loaded the sys in iE9, and YES!
It displayed seemingly perfectly.

AhHa......... so maybe, with good coding, the 3 main religions can be catered for in a single document.

What a relief (you can imagine).
I've gotta test it a bit more but so far so good.

Ace..... is offline   Reply With Quote