hyperlinks without lines

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

Guest

This is pretty basic but I want to create hperlinks in frontpage without
lines. I am not currently using style sheets. What is the html code to
accomplish this?
 
Use stylesheets to define your pseudo-classes. When you do this, select
text-decoration:none; as the style, e.g.,

<style type="text/css">
a:link, a:visited, a:active { text-decoration:none; }
a:hover { text-decoration:underline; }
</style>

This will only give you an underline on hover.
 
Switch to Code View.

in the <head> section of your code, put:
<style>
<!--
a{text-decoration:none}
//-->
</style>
 
cshaffer said:
This is pretty basic but I want to create hperlinks in frontpage without
lines. I am not currently using style sheets. What is the html code to
accomplish this?

Can't do it with HTML code - see the other responses for CSS code.
 
Use the Underline button on the Formatting toolbar. To do this:1. Select
the hyperlink where you want to remove the underline.
2. On the Formatting toolbar, click the Underline button.

The hyperlink will no longer be underlined.
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===

|
| | > This is pretty basic but I want to create hperlinks in frontpage without
| > lines. I am not currently using style sheets. What is the html code to
| > accomplish this?
|
| Can't do it with HTML code - see the other responses for CSS code.
|
|
| --
| Patty Ayers | www.WebDevBiz.com
| Free Articles on the Business of Web Development
| Web Design Contract, Estimate Request Form, Estimate Worksheet
| --
|
|
 
Tom Willett said:
Use the Underline button on the Formatting toolbar. To do this:1. Select
the hyperlink where you want to remove the underline.
2. On the Formatting toolbar, click the Underline button.

The hyperlink will no longer be underlined.

Right - or you can use FrontPage to add the CSS code (in some form)
automatically. But as I said, with HTML, can't be done.
 
It is not done with HTML - but CSS will accomplish it. add the line to the
a href "text-decoration:none".

You can do the above, by going to the hyperlink properties, then going to
the "Style" button, then under "Font" check the "No Underline" button.
 
Right, but only if he or she wants to remove the links from individual
links. If it's from all links, then the method David provided would be more
efficient.
 
Back
Top