That was exactly what I needed. What I had was essentially right as far as the css.
I just tried to get all of the variable under one HeadBoxRight line instead of several.
Here is what I finially came up with: I had to put in the visited or active as it turned blue otherwise. I also added the text align right.
Code:
.HeadRightBox {
color: #FFFFFF; font-family: Verdana, Arial, Helvetica, Sans-serif; font-size: 12px; text-align: right; line-height: 135%; }
.HeadRightBox a { color: #FFFFFF; text-decoration: none; }
.HeadRightBox a:hover { color: #FFFFFF; text-decoration: underline; }
.HeadRightBox a:visited { color: #FFFFFF; text-decoration: none; }
.HeadRightBox a:active { color: #FFFFFF; text-decoration: none; }
This looks just fine in 1024 x 768 or higher, but the wording does not line up right on a 800 x 600 screen. Should I even worry about 800 x 600 as most sites are designed for 1024?
Thank you so much for the help.