|
How To Remove
the Underline From a Hyperlink Overview |
|
By default, FrontPage underlines your hyperlinks. Here we will show you how to remove the underline from hyperlinks, both individually and for an entire page. Both processes involve adding code in HTML view in FrontPage.
|
| Removing the Underline From a Single Hyperlink |
|
To remove the underline for a single hyperlink and leave the rest with underlines, do the following:
<a href="http://www.adventure-works.com/photographs">Photographs</a> Note that this code will begin with <a href=, then your hyperlink, then the name of your hyperlink, then </a>.
<a href="http://www.adventure-works.com/photographs" style="text-decoration:none">Photographs</a>
|
| Removing Underlines From an Entire Page |
|
To remove the underlines for all hyperlinks on your page, do the following:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <meta name="GENERATOR" content="Microsoft FrontPage 4.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <title>New Page 3</title> </head>
<style href>a {text-decoration: none} </style> Tip: If you want most of your hyperlinks to not have the underline, use this method. For the hyperlinks on your page you want underlined, highlight the hyperlink, and click the Underline icon on the formatting toolbar (represented by U). You can also highlight the hyperlink and press CTRL+U. Or you can right click it and select Font. From here, you can check the Underline box.
|
| More Information |
For more extensive information on using styles and hyperlinks, see KB article #Q233104: FP2000: How to Alter the Formatting of Hyperlinks Using Styles
|
|
©1999 Microsoft Corporation. All rights reserved. Terms of Use |