Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to alter the formatting of hyperlinks by using styles in FrontPage 2000


View products that this article applies to.

Summary

This article describes ways in which you can modify the appearance of hyperlinks beyond the methods available through the FrontPage 2000 Style dialog box.

Removing the Hyperlink Underline

The Font dialog box (on the Format menu) offers the ability to define Underline, Strikethrough, Overline, Blink, Small caps, All caps, Capitalize, and Hidden text styles. If one of the boxes is selected, then font attributes are written to the type of style definition. One of the more popular styles is to display hyperlinks without an underline. To achieve this effect, you must edit the style code directly.

To achieve this effect in FrontPage, find the file that contains the style syntax.

Using Style Sheets Links Command

If the style was applied through the Style dialog box (on the Format menu), open the page to which the style was applied. If the style was applied through the Style Sheet Links command, open the cascading style sheets file (or files) that the page is linked to.
  1. Find the style syntax for the a tag. It looks similar to the following:
    <style>
    <!--
    a   {  }
    -->
    </style>
    						
  2. Within the curly braces, type
    text-decoration:none
    						
  3. Your completed style code will look similar to the following:
    <style>
    <!--
    a   { text-decoration:none  }
    -->
    </style>
    						

Using Create Hyperlink Dialog Box

If the hyperlink style was defined by clicking the Style button in the Create Hyperlink dialog box (on the Insert menu, click Hyperlink), follow these steps:
  1. Open the page containing the hyperlink.
  2. Select the link and then switch to HTML view.
  3. Edit the selected A tag so that its style attribute looks like the following:
    style="text-decoration: none"
    						
The following is an example of a complete style definition as an attribute of the hyperlink tag.
<a href="http://localhost" style="text-decoration: none">inline style</a>
				


Specify Different Formatting for Unvisited, Visited, and Active Links

The HTML tag that forms hyperlinks has some pseudo-classes defined by the cascading style sheets specification, yet pseudo-classes are not displayed in the list of all HTML tags drawn by FrontPage 2000. This section describes how you can assign different formatting to a hyperlink, whether it is unvisited, visited, or active.
  1. On the Format menu, click Style.
  2. From the list in the lower left corner, select All HTML tags, select the A tag, and click Modify.
  3. As a name for the style, type a:link for unvisited links, and then apply the various formatting options available in the Modify Style dialog box. To specify styles for active and visited links, repeat these steps 1-3, but in step 3, name the style a:active or a:visited.
For information about using themes for formatting, please see the following article in the Microsoft Knowledge Base:
198512 FP2000: What Are Themes?



↑ Back to the top


References

For more information about cascading style sheets and anchor-pseudo-classes, please see the following Web sites:

http://www.w3.org/TR/REC-CSS1.html
http://www.w3.org/TR/REC-CSS2/

For more information about how User Agents commonly display newly visited anchors differently from older ones:
http://www.w3.org/TR/REC-CSS1.html#anchor-pseudo-classes


↑ Back to the top


Keywords: KB233104, kbformat, kbscript, kbhowtomaster

↑ Back to the top

Article Info
Article ID : 233104
Revision : 2
Created on : 8/12/2005
Published on : 8/12/2005
Exists online : False
Views : 299