Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Underlined links

Status
Not open for further replies.

guytoon

Technical User
Jun 5, 2002
54
GB
Alright lads?
Is it possible to create hyperlinks using text that only show on roll over in Dreamweaver MX or is this a feature for MX2004 and eight?

Many thanks?

Guytoon
 
Among other places, see:
where this stylesheet example is from:
Code:
<style type="text/css">
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {text-decoration: underline; color: red;}
</style>
Essentially this turns off the underlines except on hover, where it turns them back on and colors the link red.

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top