This article describes the preferred method for removing the underline from a hyperlink in FrontPage 2003.
Microsoft provides programming examples for
illustration only, without warranty either expressed or
implied, including, but not limited to, the implied
warranties of merchantability and/or fitness for a
particular purpose. This article assumes that you are
familiar with the programming language being demonstrated
and the tools used to create and debug procedures.
There are two ways to remove the underline formatting from a single hyperlink:
<a href="http://Example.Microsoft.Com">underlinedhyperlink</a>
<a style="text-decoration:none" href="http://Example.Microsoft.Com"> nonunderlinedhyperlink</a>
You can remove the underline from all
hyperlinks in a page by adding a <STYLE> section to the
page.
To remove the underline from all hyperlinks on a page,
follow these steps:
<STYLE>A {text-decoration: none;} </STYLE>
Microsoft Knowledge Base Article - 825543