hyperlinks

S

Steve Smith

I'm using Frontpage 2000. How can I create text hyperlinks without the underline? Frontpage seems to underline all text hyperlinks automatically, and I would like to bypass this function.
Thank You.
 
K

Kathleen Anderson [MVP - FP]

This solution will remove the underlines from all the hyperlinks on the
page.
In HTML view, add the following to the head section of each page
<style type="text/css">
<!--
a {text-decoration:none}
-->
</style>
 
A

Andrew Murray

styles - either an external style sheet or within the hyerlink dialogue, click
"Style" button, and go to "font" option.

Steve Smith said:
I'm using Frontpage 2000. How can I create text hyperlinks without the
underline? Frontpage seems to underline all text hyperlinks automatically, and I
would like to bypass this function.
 
R

Rob

This worked for me in FP2003 however I would like to go one step further and
on use this on some of the links.

A good example is the MSN.com webpage. The header of a group is underlined
but the contents are not, and they are all links.

Really I want to do this on a link by link basis? if thats possible.
 
T

Thomas A. Rowe

You have two options:

1. Use the CSS that Kathleen provided, then for the link that you want underlined, select the link
the U button on Top Menu bar or Font and select Underlined.

2. Use CSS and assign Class IDs to each of your links.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
T

Thomas A. Rowe

Yes.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Top