Forum Moderators: not2easy

Message Too Old, No Replies

Font color don't work in Mac IE browser

         

aryastark

6:35 am on Nov 1, 2004 (gmt 0)

10+ Year Member



Hi guys,
i've got a css that's working fine in PC browsers, as well as the Safari on Mac. The weird thing is, it's not working on the IE for Mac v5.2.

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

Span

8:13 am on Nov 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to the forums, Arya.

According to the specs, Times New Roman should be "Times New Roman" - between double quotes. And Sans Serif should be Sans-Serif with a dash in between.
Maybe that helps?

aryastark

3:29 pm on Nov 2, 2004 (gmt 0)

10+ Year Member



hey it works! put in the '' for the Times New Roman and the '-' for sans-serif..

thanks mucho for your help!

arya