How do you eliminate thje underline from a Hyperlink text?

J

Jon McDaniel

In Mricosoft FrontPage 2000, how do you get rid of the underline of a word
that has been hyperlinked?
 
M

Mark Fitzpatrick

You have to set the link's style to text-decoration: none. You can do this
through the style button on a link's properties, or by adding the following
to the HTML of the link

style-"text-decoration: none;"

so it may look like:
<a href="mypage.htm" style-"text-decoration: none;">My Page</a>

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
M

Murray

CSS's pseudo-classes and styles will do that.

You can add inline code to the link itself (if you only want to remove the
underline from a single link) -

<a href="foo.html" style="text-decoration:none">

or you can create a pseudo-class style -

<style type="text/css">
<!--
a { text-decoration:none; }
-->
</style>

which will affect every <a> tag on the page.
 
M

Murray

style=

!!!

--
Murray

Mark Fitzpatrick said:
You have to set the link's style to text-decoration: none. You can do this
through the style button on a link's properties, or by adding the
following to the HTML of the link

style-"text-decoration: none;"

so it may look like:
<a href="mypage.htm" style-"text-decoration: none;">My Page</a>

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
R

R Abbasi

-----Original Message-----
In Mricosoft FrontPage 2000, how do you get rid of the underline of a word
that has been hyperlinked?
.
Just higlight the hyperlinked word and then click on the
underline icon on top or press Ctrl+U and that will remove
the underline
 
K

Kevin Spencer

An easy technique (requiring no programming) is to squint your eyes real
hard while looking at the hyperlink. Unfortunately, the results depend upon
the quality of your eyesight.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
 
M

Murray

Whiteout on the screen can do it, too. But only on pages with a white
background.
 
Top