my CSS styles are set so that the links will have an underline when they hover, however I don't want this for one particular link. how do I go about doing this? thanks
make something like this a.topmenulink:link { color: #FFFFFF; font-family: Arial; font-size: 13px; text-decoration: none; } a.topmenulink:visited { color: #FFFFFF; font-family: Arial; font-size: 13px; text-decoration: none; } a.topmenulink:hover {color: #CCFF66; font-family: Arial; font-size: 13px; text-decoration: none; } Code (markup): then set your class to "topmenulink" like this maybe <a href="individual.php" class="topmenulink">Get Individual Quote Now! </a> Code (markup):