OpaQue 15 Report post Posted January 1, 2005 Probably a noobish question, But how do i get rid of the Underlining under text links You can make stylesheet to has not underlinelink by put "text-decoration: none" . example (put code in current page between tag <head> </head> ) <style type="text/css"> a:link { color: #0000ff; text-decoration: none} a:visited { color: #808080; text-decoration: none} a:active { color: #808080; text-decoration: none} a:hover { color: #ff8040; text-decoration: none} </style> Or you can put code in to file .css and link them from current page example (code in style.css) <LINK href="style.css" type=text/css rel=stylesheet> Share this post Link to post Share on other sites