Has anyone noticed a bug in IE5.0 on a mac???? I've linked two different stylesheets to pages using a browsercheck:-
if(is.ns4)
{
document.write('<link rel="stylesheet" href="../ns_nav.css" type="text/css">')
}
else
{
document.write('<link rel="stylesheet" href="../nav.css" type="text/css">')
}
When I rollover text defined as the specific class in the anchor tag of the link, it doesn't rollover in IE5 on a mac, and in some cases just chooses some to rollover. Now this works fine in IE4 - 5.5 and NS6 on a PC and IE4 on a mac.
The text concerned is formatted in a table on a <div> layer.
Has anyone seen this before? Can anyone come up with a fix for it??
if(is.ns4)
{
document.write('<link rel="stylesheet" href="../ns_nav.css" type="text/css">')
}
else
{
document.write('<link rel="stylesheet" href="../nav.css" type="text/css">')
}
When I rollover text defined as the specific class in the anchor tag of the link, it doesn't rollover in IE5 on a mac, and in some cases just chooses some to rollover. Now this works fine in IE4 - 5.5 and NS6 on a PC and IE4 on a mac.
The text concerned is formatted in a table on a <div> layer.
Has anyone seen this before? Can anyone come up with a fix for it??