I havent been messi'n around with CSS and HTML for 2-3 years. My problem is that the link is not in Verdana, it is in times new roman. I don't know whats wrong. The class: This is the code for the link: <STYLE TYPE="text/css"> <!-- a.classlink:link { font: Verdana; color: white; text-decoration: none; size: 11 } a.classlink:visited { font: Verdana; color: white; text-decoration: none; size: 11 } a.classlink:hover { font: Verdana; color: white; text-decoration: none; size: 11 } a.classlink:active { font: Verdana; color: white; text-decoration: none; size: 11 } --> </STYLE> HTML: a class="classlink" href="#" >Contact</a> HTML:
Your font short hand is close: font:normal 11px verdana; Can't do color with font, need to use: color:#FFF; For future reference http://www.w3schools.com/css/pr_font_font.asp BTW, it took 40 seconds to type the answer.