Interactive Link

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!
 
S

Steve Easton

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!
 
G

Guest

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

Happy Holidays!
 
S

Steve Easton

:) 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! =)
 

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