IE 7 displays script incorrectly

  • Thread starter Thread starter xx75vulcan
  • Start date Start date
X

xx75vulcan

Can anyone take a look at this page and look at the navigational links
on the left-hand side of the page.

Link: http://www.rockwood.k12.mo.us/stanton/default.htm

This page uses IncludeFiles, so the link to just the left-hand
navigation is: http://www.rockwood.k12.mo.us/stanton/left.htm


This file, uses Script to control the folding & unfolding of the menus.
If you view this in the new Internet Explorer Beta, all of the text is
ontop of itself. I've read it's because IE 7 doesn't know what to do
with <div> tags.

Can anyone please advise a workaround?

Many thanks in advance!
 
As for the problem.
it is in the scripting...

When viewing the generated source files you get.

IE-7 Sample
=========================
<body bgcolor="#FFFFFF">
<div id="divCont">

<div id="divTop0" class="clTop"><a target="_top" href="default.htm">
<img src="navdot_off.gif" name="imgA0" alt="Navigate" border="0"
align="absmiddle" align="absmiddle" align="absmiddle" width="19"
height="17">&nbsp;HOME</a><br>
<div id="divSub0" class="clSub">
</div>
</div>
===========================
Fox Fire Sample
===========================
<body bgcolor="#ffffff">
<div style="visibility: visible;" id="divCont">

<div style="left: 0px; top: 0px;" id="divTop0" class="clTop"><a
target="_top" href="default.htm">
<img src="http://www.rockwood.k12.mo.us/stanton/navdot_off.gif"
name="imgA0" alt="Navigate" align="absmiddle" border="0" height="17"
width="19">&nbsp;HOME</a><br>
<div style="visibility: hidden;" id="divSub0" class="clSub">
</div>
</div>=============================

As you can see they are completely different!

Work around? None that I know of BUT
IE-7 is only in Beta now and the problem might not exist in the final
version.

John Malone
| Can anyone take a look at this page and look at the navigational links
| on the left-hand side of the page.
|
| Link: http://www.rockwood.k12.mo.us/stanton/default.htm
|
| This page uses IncludeFiles, so the link to just the left-hand
| navigation is: http://www.rockwood.k12.mo.us/stanton/left.htm
|
|
| This file, uses Script to control the folding & unfolding of the menus.
| If you view this in the new Internet Explorer Beta, all of the text is
| ontop of itself. I've read it's because IE 7 doesn't know what to do
| with <div> tags.
|
| Can anyone please advise a workaround?
|
| Many thanks in advance!
|
 
Back
Top