Feb 19, 2007 #1 guytoon Technical User Joined Jun 5, 2002 Messages 54 Location 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
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
Feb 19, 2007 #2 traingamer Programmer Joined Jun 18, 2002 Messages 3,270 Location US Among other places, see: http://www.echoecho.com/csslinks.htm 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 Upvote 0 Downvote
Among other places, see: http://www.echoecho.com/csslinks.htm 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