Bengal313
12-11-2007, 09:41 PM
Though out my site I have a common link style . But I need to have a different link style for a specific links. How can I create another style while keeping the default style.
A:link {
COLOR: #000071;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
A:visited {
COLOR: #000071;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
A:active {
COLOR: #000071;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
A:hover {
COLOR: #ff4400;
text-decoration: underline;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
Is there a way to add the hover/visited/link/active/ style to a specific class.
.messagebodyheader {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #003399;
}
A:link {
COLOR: #000071;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
A:visited {
COLOR: #000071;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
A:active {
COLOR: #000071;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
A:hover {
COLOR: #ff4400;
text-decoration: underline;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
Is there a way to add the hover/visited/link/active/ style to a specific class.
.messagebodyheader {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
color: #003399;
}