1. | -- you have a space before the first - the point of is to not let stray spaces in. It is a Non-Breaking Space.
2. as mentioned, I blew it -- you need to lose EVERY instance of class="HeadRightBox"
- except for the first td.
3. Your CSS is a mess. Let's start over. What is your goal? What color/font size/font decoration do you want the links? What do you want to happen when the link is hovered over? After a link is followed?
Your CSS is not going to do anything for you right now.
Try this:
Code:
.HeadRightBox {
color: #FFFFFF; font-family: Verdana, Arial, Helvetica, Sans-serif; font-size: 12px; line-height: 135%; }
.HeadRightBox a { color: #FFFFFF; text-decoration: none; }
.HeadRightBox a:hover { color: #FFFFFF; text-decoration: underline; }