limelites - You have so many stylesheets that it is hard to find where some things are controlled, but you have some controls that affect categories in stylesheet.css.
Code:
.leftBoxContainer a:hover, .rightBoxContainer a:hover {
color:#000;
font-size: 13px;
}
This makes the links bold on hover, though there is probably a better place to set this so the !important won't be needed.
Code:
.leftBoxContainer a:hover, .rightBoxContainer a:hover {
color:#000;
font-size: 13px;
font-weight: bold !important;
}
Bookmarks