Forum Moderators: open
Everything is in layers (no tables whatsoever) I can position the layers fine in all the browsers but as soon as I move them to an external JS file and put doc.write tags round them it all goes pear shaped!! Only in NN4.7 though.
Also if i move the place where the code is inserted they also screw up which is bizarre as all the layers are positioned absolutley.
Any ideas whats going on and how I can get around it?
PS using SSI or PHP is not an option.
for the css...
#test { position: absolute; z-index: 1; height: 30px; width: 200px; left: 200px; top: 20px}
for the body...
<script language="JavaScript">
document.write("<div id='test'>")
document.write("<b>I LOVE NETSCAPE!</b>")
document.write("</div>")
</script>