Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Active Link (Firefox vs. IE)

0 views
Skip to first unread message

MN

unread,
Aug 11, 2006, 3:26:02 PM8/11/06
to
When my page loads in IE/Netscape, I have a javascript call to a link to make
it active within an IFrame that shows the link being pink (my active color).
When I view it in Firefox/Safari, it just shows the box being active but no
color change. Does anyone know if the code below is incorrect or something
that I can't do within Firefox?

.basic_plays, A.basic_plays:link, A.basic_plays:visited
{
font-family: verdana;
font-weight: bold;
font-size: 11px;
color: #62286c;
text-decoration: none ;
line-height: 14px;
}

A.basic_plays:hover, A.basic_plays:active
{
font-family: verdana;
font-weight: bold;
font-size: 11px;
color: #df058c;
text-decoration: none ;
line-height: 14px;
}

Below is also my Javascript call (though I know this is a not a Javascript
group). Just wanted to give everything I'm dealing with.

<head>
<script>
function setFocus(id) {
document.getElementById(id).focus()
}
</script>

</head>

<body style="background-color: #ffffff; background: transparent;"
onload="setFocus('party')">

Thanks,
MN

0 new messages