I want to combine (if possible)
code:
/* style to color links and change cursor */
A:link, A:visited, A:hover {
text-decoration: none;
color: ffff00;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 11px;
font-weight: bold;
cursor : help;
}
/* style to underline links on mouse over */
a:hover {
text-decoration: underline;
}
and also make it so that the color of the link is yellow, but the underline color is black.
[offtopic]
Is there any form of bookmark code in firefox??
[/offtopic]