Does anyone know a better way to get the text to change color as a user mouses over the text? I want to use camtasia to do some video tutorials and would like the font color to change as I mouseover with the cursor.
<html>
<head>
<style>
.changecolor {color:black; text-decoration:none;}
:hover.changecolor{color:red; text-decoration:bold;}
</style>
</head>
<body>
<font size="7">
<a class="changecolor" href="http://">Now </a>
<a class="changecolor" href="http://">is </a>
<a class="changecolor" href="http://">the </a>
<a class="changecolor" href="http://">time </a>
</font>
</body>
</html>
Screen looks like this and does work but I'm sure this is very inefficient.
Now is the time
Edit by admin: no contact info permitted on the forum, thank you


Reply With Quote
Bookmarks