Hyperlinks

  • Thread starter Thread starter Carole Hall
  • Start date Start date
C

Carole Hall

I have another question: with the font I am using, I think
the links look better if they are not underlined. I want
them to change color, but when I do what it says in the
"Help" section, it only works for maybe two of them. How
do I get them all to do the same thing? Here's the HTML of
what I did following the "Help" directions.
<style fprolloverstyle>A:hover {color: #FF0000;
font-family: Hall; font-size: 24pt; font-weight: bold}
 
Carole,

Another way to remove the underline from hyperlink is to
add the following Style attribute inbetween your <Head>
</Head> tags.

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

Mike,
http://FrontPageForms.com
Visit my form tutorials
 
-----Original Message-----
Carole,

Another way to remove the underline from hyperlink is to
add the following Style attribute inbetween your <Head>
</head> tags.

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

Mike,
http://FrontPageForms.com
Visit my form tutorials

.
Mike,
I've already done that.
</SCRIPT>

<head>
<STYLE>
A {text-decoration: none;}
</STYLE>


<title>Alice</title>
<style fprolloverstyle>A:hover {color: #FF0000;
font-family: Hall; font-size: 24pt; font-weight: bold}
</style>
</head>
 
Back
Top