En
www.tecnorama.org hay una extensión para Dreamweaver llamada Fast Link Styles, que te ayuda a
personalizar tus links de manera muy fácil y rápida.
En todo caso, esto se hace con CSS (Cascade Style Sheets).
Prueba insertando el sgte. código en tu documento, entre las etiquetas <HEAD> y </HEAD>:
<style type="text/css">
<!--
a:link { font-weight: bold; color: #3399FF; text-decoration: none}
a:visited { font-weight: bold; color: #9900FF; text-decoration: underline}
a:hover { font-weight: bold; color: #FF9966; text-decoration: underline}
a:active { font-weight: bold; color: #FF3300; text-decoration: underline}
-->
</style>
Juega con los colores y con el parámetro "underline" que, en este caso, dice "none" (sin subrayar).
Suerte.