Remove underlines on hyperlinks

K

Kathrine J Wathne

FrontPage automatically puts a line under every singel hyperlink I make.
Does anyone know the html-code for removing this. I do not want hyperlinks
with underlines.

Please mail me!

(e-mail address removed)
 
S

Steve Easton

Place this between the head tags:

<script type=text/css>
a. {
text-decoration: none;
}
</script>

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
J

Jane Here

Select the underlined text, and then click the Underline button (next to
Bold and Italics).
 
G

Guest

<style>
<!--
a {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:link {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
-->
</style>

You can use this if you want no underlines for hyperlinks throughout the
webpage

<a href="page.html" style="text-decoration: none">Link</a>

You can use the above code for specific links by selecting the text for
hyperlinks and clicking the Underline button.

Hope this is usefull
 

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

Top