Roc
08-06-2007, 09:48 PM
#leftnav a:link, a:visited {
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#ffffff;
font-weight: normal;
}
#leftnav a:hover, a:active {
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#ffcc33;
font-weight: normal;
}
a:link, a:visited {
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#4f63e3;
font-weight: normal;
}
a:hover, a:active {
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#ffcc33;
font-weight: normal;
}
What is the most optimum way of writing this code.
There seems to be a conflict when I try to achieve this.
In FF2 the last two blocks when present over-ride the previous 2 block values.
When absent, all the links (not just the div links) take the color value of the previous blocks.
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#ffffff;
font-weight: normal;
}
#leftnav a:hover, a:active {
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#ffcc33;
font-weight: normal;
}
a:link, a:visited {
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#4f63e3;
font-weight: normal;
}
a:hover, a:active {
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
color:#ffcc33;
font-weight: normal;
}
What is the most optimum way of writing this code.
There seems to be a conflict when I try to achieve this.
In FF2 the last two blocks when present over-ride the previous 2 block values.
When absent, all the links (not just the div links) take the color value of the previous blocks.