Code:
<style type="text/css">
#divStayTopLeft a {
color:black;
}
</style>
Or just add the green part to an existing stylesheet. Use whatever color you like. Existing hover properties should still apply. If not, make your own:
Code:
<style type="text/css">
#divStayTopLeft a:hover {
color:purple;
}
</style>
These things tend to vary by browser so, check it out in all target browsers. And, if you want to avoid problems with folks who have selected your foreground color as their default background color, always specify a background-color too.
Bookmarks