absolute positioned link tags not appearing on page

liunx

Guest
Test Page (<!-- m --><a class="postlink" href="http://www.gradetrax.com/Reports/test.asp">http://www.gradetrax.com/Reports/test.asp</a><!-- m -->)

When I click the above link, the following code is not being rendered in IE, at least for me its not:

<div id="navLevels"><a href=http://www.webdeveloper.com/forum/archive/index.php/"../Instructor/">home</a> | <a href="../Instructor/reportSelection.asp">Reports</a>
| <a href=http://www.webdeveloper.com/forum/archive/index.php/"../Instructor/studentProgressSelection.asp">Student Selection</a></div>

would someone be so kind as to load this up (in IE) and see if the navLevels div "a" tags show up (please view source)? This irritates me as I have the exact same html and css on other pages but on this one the "a" tag links don't appear in my (ie) browser (mozilla is fine). Has anyone ever seen such a thing and have a clue as to what the problem might be?this line:

<div id="navLevs"><a href=http://www.webdeveloper.com/forum/archive/index.php/"../Instructor/">home</a> | <a href="../Instructor/reportSelection.asp">Reports</a></div>

I don't think it should be

href=http://www.webdeveloper.com/forum/archive/index.php/"../Instructor/">home</a>

but rather

href=http://www.webdeveloper.com/forum/archive/index.php/"../Instructor/site.asp">home</a>thanks theuedimaster, I'm just calling index.html with the link as I have it, besides regardless of what page I'm calling I expect the link to be visible on the page.try changing the z-index property of the div to like 40 or something....maybe it is underneath the blue bar?excellent idea, however it didn't work.

I've narrowed it down to the "addressDiv", if I remove it the links appear, when present the liks aren't visible. Can anyone explain this?

These two pages have identical code except for the "addressDiv" has been removed from test2.

test1 (<!-- m --><a class="postlink" href="http://www.gradetrax.com/Reports/test.asp">http://www.gradetrax.com/Reports/test.asp</a><!-- m -->)
"<div id="navLevs">" not present

test2 (<!-- m --><a class="postlink" href="http://www.gradetrax.com/Reports/test2.asp">http://www.gradetrax.com/Reports/test2.asp</a><!-- m -->)
"<div id="navLevs">" present

thanks in advance
 
Back
Top