D
David Allen
How do I remove the underline from a hyperlink?
Murray said:Use CSS to do it.
With CSS you can specify -
a { text-decoration:none; }
and none of your links will be underlined.
That rule would go into either a linked stylesheet or one embedded in the
head of the page -
<style type="text/css">
<!--
a { text-decoration:none; }
-->
</style>
David Allen said:But its all or nothing, right?
I can't hyperlink underline some items but not others?
I am designing my outlook signature and I have a few hyperlinks in it.
I didn't want the underline but I do want underlined hyperlinks when
I type them into the body of the email.
David Allen said:But its all or nothing, right?
I can't hyperlink underline some items but not others?
I am designing my outlook signature and I have a few hyperlinks in it.
I didn't want the underline but I do want underlined hyperlinks when
I type them into the body of the email.
David Allen said:Ok how would I do this
Where My Yahoo Signature was not underlined but the rest of the page
hyperlinks would operate normally
I'm really not that familar with CSS or #menu's
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Yahoo Signature</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2800.1522" name=GENERATOR></HEAD>
<BODY>
<style type="text/css">
<!--
a { text-decoration:none; }
-->
</style>
<DIV align=left><FONT face=Arial size=2><a href="http://www.yahoo.com">My
Yahoo Signature</a></FONT></DIV>
<DIV align=left><FONT face=Arial size=2></FONT> </DIV></BODY></HTML>
When I remove <DIV> </DIV> then my urls get underlined again.
So you are saying to place
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
Yes.
I removed it because Outlook did not put it there when I created the
signature the first time.