I spent way to much time last night trying to make this work instead of sleeping.. when I should have posted a message here as I'm my problem would have been answered in 5 min.

I want the sidebox headers (where there is a link - new products and shopping cart for example). to be:

* Visited - White
* Link - Yellow
* Hover - Red

alas I sorta had the "cart" working but the "new products" totally ignored the css, which totally puzzled me. Any thoughts? I'm sure this is a no brainer, if I new what I was doing wrong.

HTML Code:
/* QJS - added */
h3.leftBoxHeading A:visited (color:white)
h3.leftBoxHeading A:link (color:white)

.leftBoxHeading a:active {
	color: white;
	text-decoration: none;
	border-bottom: 1px solid #9a9a9a;
	} 

h3.leftBoxHeading a:hover {
	color: red;
	text-decoration: none;
	border-bottom: 1px solid #ffffff;
	} 

/* QJS - added */
h3.leftBoxHeading a:visited {
	color: white;
	text-decoration: none;
	border-bottom: 1px solid #9a9a9a;
	}