This will remove all underscores from all links:
a {text-decoration: none; }
If you have specific links that you want to apply this to, give them a class name, such as nounderline , and do the following:
a.nounderline {text-decoration: none; }
This will only apply to these links and leave all others unaffected.
This code belongs to the <head> your document or in the stylesheet:
<head> <style type="text/css"> a.nounderline {text-decoration: none; } </style> </head>
And in the body:
<a href="#" class="nounderline">Link</a>
John Conde Jun 01 '12 at 16:16 2012-06-01 16:16
source share