xxJackxx
12-03-2006, 02:42 PM
hi,
does anyone know how to stop a link from being underlined?
Thanks
does anyone know how to stop a link from being underlined?
Thanks
|
View Full Version : Make a link not underline xxJackxx 12-03-2006, 02:42 PM hi, does anyone know how to stop a link from being underlined? Thanks Chris 12-03-2006, 03:24 PM If you want all links to have no underline, then add this between the <head> and </head> tags: <style type="text/css"> a:link { text-decoration: none; } a:active { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: none; } </style> xxJackxx 12-03-2006, 06:30 PM Thanks alot. x Chris 12-03-2006, 06:48 PM You're welcome :) |