PaulBricker
Programmer
I've got 5 links on my intranet homepage. We debuted it the other day and we had complaints from a couple Mac users that they couldn't see any of the links to other pages. The funny thing is they could see the links to the email addresses on another part of the page. I built the page using CSS. The styles for the links are very generic
a:link {
font-weight: bold;
text-decoration: none;
color: #666600;
}
a:visited {
font-weight: bold;
text-decoration: none;
color: #666600;
}
a:hover, a:active {
text-decoration: underline;
color:#A0A6A0;
}
and this is one of the links they can't see.
<p><a href = " title = "click here to enter a new work request">Work Request Form</a></p>
I couldn't find anything that specifically spoke to this problem. Anyone have any thoughts.
Thanks
Paul
a:link {
font-weight: bold;
text-decoration: none;
color: #666600;
}
a:visited {
font-weight: bold;
text-decoration: none;
color: #666600;
}
a:hover, a:active {
text-decoration: underline;
color:#A0A6A0;
}
and this is one of the links they can't see.
<p><a href = " title = "click here to enter a new work request">Work Request Form</a></p>
I couldn't find anything that specifically spoke to this problem. Anyone have any thoughts.
Thanks
Paul