Shoutbox

html Help! - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: html Help! (/showthread.php?tid=38992)

html Help! by jordanspringer on 02-22-2005 at 09:08 AM

Hi, i am trying to create a link on my webpage which i am creating in dreamweaver mx 2004. i want the link to look like normal text (not the link color blue, and underlined).  but when you take your mouse and place it over the link, it underlines. to see an example of what i mean, go to www.msn.com and hover over their links. another example is www.mess.be, hovering over thier links with your mouse makes them highlighted. thanks!


RE: html Help! by Ash_ on 02-22-2005 at 09:14 AM

<a href='blah' style='text-decoration:none;'><font color='white'>Clickie</font></a>

that should do it.


RE: html Help! by jordanspringer on 02-22-2005 at 09:27 AM

***oops i meant hovering over the links on www.msn.com, and www.mess.be changes the normal reglar text into Underlined text. how is that possible?


RE: html Help! by -dt- on 02-22-2005 at 09:36 AM

for all links on your webpage to do this insert this into your css

code:
A:link, A:visited, A:active { text-decoration: none;}
A:hover{text-decoration: underline;}