Interactive Link

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

Guest

How do you remove an underline from a hyperlink in plain view (FP 2003 user) and hover with the underline like MS Websites? Thank you!
 
Using styles.
Place between the head tags.


<style type="text/css">
<!--
a {
}
a:link {
background-color: transparent;
color: blue;
text-decoration: none;
}
a:hover {
background-color: transparent;
color: red;
text-decoration: underline;
}
--/>
</style>

Change color: as desired.


--
95isalive
This site is best viewed..................
...............................with a computer
Steve said:
How do you remove an underline from a hyperlink in plain view (FP 2003
user) and hover with the underline like MS Websites? Thank you!
 
Steve Easton, thank you... it works terrific. I searched everywhere I could think of. Many thanks you're terrific! =)

Happy Holidays!
 
:-) and Happy Holidays in return.

You've just been exposed to CSS
Do a Google search for CS and or
Cascading Style Sheets.
You can apply one sheet to your entire web,
and make changes to the entire web by changing
one style sheet.


--
95isalive
This site is best viewed..................
...............................with a computer

Steve Jacobson said:
Steve Easton, thank you... it works terrific. I searched everywhere I
could think of. Many thanks you're terrific! =)
 
Back
Top