< Back

Document Subject: No Underlines on Links
Hint Short Cut: Add this to your code & documentation to help you find this page.
http://#NoLinkUnderlines or http://A555F9/nn.nsf/ByAlias/NoLinkUnderlines

Handy bit of code to remove those nasty,  ugly link underlines on your lovely web page.




Stick this in a computed for display field near  the top of a form and enable Pass Thru HTML.

 

@newline+
"<style type=\"text/css\">"+@newline+
"<!--"+@newline+
"a {  text-decoration: none}"+@newline+
"td      { font-family: arial }"+@newline+
"td      { font-size: 10pt }"+@newline+
"A:hover {color:#1010ff;}"+@newline+
"-->"+@newline+
"</style>"

 

The hover colour is set as a blue.

Red is #ff0000   Green is #0000ff    White is #ffffff  etc

 

This uses style sheets so will not work on older browsers,

but it will not break the code if the user is using an older browser.