Re: Email links in Dreamweaver 8
Use styles...
try putting this after the title tag of your html code...
<style type="text/css">
<!--
.stylename a:link {
color: #00FF00;
text-decoration: none;
}
.stylename a:visited {
text-decoration: none;
color: #00FF00;
}
.stylename a:hover {
text-decoration: none;
color: #FF0000;
}
.stylename a:active {
text-decoration: none;
color: #FF0000;
}
-->
</style>
Just edit it depending on your preference.
After that, do this with the link...
<div class="stylename">Please <a href="yourlink">contact us</a> for more information</div>
This should answer your question.
|