|
Don't get at poor old NN4. Okay, it's a little long in the history list but it was king of the browsers before IE took hold. ;-)
Netscape 4's support of margin is a little buggy but I think the following will achieve the result you need. As it is NN4 specific I've included a sniff.
<script language="JavaScript" type="text/javascript">
<!--
if(document.layers) // are you NN4?
{
document.tags.li.listStyleType = "none";
document.tags.ul.margins(-50);
}
//-->
</script>
HTh
|