Forum Moderators: coopster
<div id="about" style="position: relative; display: 'inline';">
<a href="../about/index.html">About Us</a><br>
</div>
</code>
The Javascript...
<code>
<script language=javascript>
<!--
ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
function msover(){
if (ie4){
event.srcElement.style.color="red";
event.srcElement.style.cursor = "hand";
}
}
function msout(){
if (ie4){
event.srcElement.style.color="gold";
event.srcElement.style.cursor = "auto";
}
}
function toggle( targetId ){
if (ie4){
target = document.all( targetId );
if (target.style.display == "none"){
target.style.display = "";
} else {
target.style.display = "none";
}
}
}
//-->
</script>
</code>
The css...I think the hidden is not relevant but?
<code>
#hidden {font-size: 11px; line-height: 10pt; margin-left: 2em;}
.cssref {font-size: 11px; line-height: 10pt; color: #000;margin-left: .3em}
#about {font-size: 9pt;line-height: 10pt;margin-left: .3em}
</code>