How do you eliminate thje underline from a Hyperlink text?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In Mricosoft FrontPage 2000, how do you get rid of the underline of a word
that has been hyperlinked?
 
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
 
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.
 
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
 
-----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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top