PDA

View Full Version : link in email signature



carbone6
August 31st, 2007, 11:29 PM
Hi,
I'm trying to add a link to a website in my email signature.
When i use "http://" it changes the colour of my link to blue.

Id like just to have the name of the site without the http and i'd like to be able to choose the colour of the text.

Is this possible?
Thanks.

Esoltas
September 2nd, 2007, 04:17 PM
You need to have the http for linking purposes, otherwise it won't work. If you want to change the color of the text, you should use css


#linktext { color:#whatever_hex; }


But if you need to stay within HTML, use the font tag, and say:

<font style="color:whatever_hex"><a href="">myemail@email.com</a></font>
Note that css is more appropriate.
My answer may be wrong because I interpreted your question poorly. Try to post code and/or examples in the future.