Is there a way to make it so when my user hovers over normal text that is an anchor, the text smoothly transitions into oblique or italicized text to show it is a link (including an underline)
Here's an example of what I'm trying to do...
<a href="http://oldsite.com">
<p class="footertext">Take me to the old site...</p>
</a>
p.footertext {
font-size:12px;
padding-left:4px;
text-decoration:none; }
p.footertext:hover {
/*text:decoration: "italicize smoothly"*/ }