Forum Moderators: not2easy
What's not working? The colors i've specified (active, hover) are not showing up at all on the Mac IE browser - it's instead displaying the link colors as purple and blue.
The code is as follows:
==================
<style type="text/css">
a:link
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
color: #000000;
font-weight: normal;
text-decoration: none;
}
a:visited
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
color: #000000;
font-weight: normal;
text-decoration: none;
}
a:hover
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
color: #745F00;
font-weight: normal;
text-decoration: none;
}
a:active
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
color: #000000;
font-weight: normal;
text-decoration: none;
}
.text
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
font-weight: normal;
font-color: #000000;
text-decoration: none;
}
.textbold
{
font-family: Times New Roman ,Arial,Verdana,Sans Serif;
font-size: 12px;
font-weight: bold;
font-color: #000000;
text-decoration: none;
}
a.nav:link
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
font-weight: normal;
color: #000000;
text-decoration: none;
}
a.nav:visited
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
font-weight: normal;
color: #222222;
text-decoration: none;
}
a.nav:hover
{
font-family: Times New Roman,Arial,Verdana,Sans Serif;
font-size: 12px;
font-weight: normal;
color: #745F00;
text-decoration: none;
}
a.anchor:link
{
font-size: 11px;
color: #99862F;
font-family: Arial,Verdana,Sans Serif;
text-decoration: none;
}
a.anchor:visited
{
font-size: 11px;
color: #222222;
font-family: Arial,Verdana,Sans Serif;
text-decoration: none;
}
a.anchor:hover
{
font-size: 11px;
color: #745F00;
font-family: Arial,Verdana,Sans Serif;
text-decoration: none;
}
a.anchor:active
{
font-size: 11px;
color: #99862F;
font-family: Arial,Verdana,Sans Serif;
text-decoration: none;
}
</style>
==================
Is there anything that's causing the Mac not to display the colors properly?
arya