Is there a code for pet profiles to have fade-in links, like what 's links do on her User Profile?
Any and all help is very appreciated. C: Please ping me!
[ToT=Riley]
If you just mean how the link 'disappear' when hovered then that's pretty simple.
For the fade you'd be looking at the :hover state and you could just set the color to either the same as the background or (what is probably better if you have links on different background colors) set it to transparent.
;;
No, I mean FADE, not disappear. I want it to slowly fade into another color.
[ToT=Riley]
Well you'll still be looking at the hover state and changing the color. For the fading effect you'll want to add transitions. So the code would look something like this:
a:link, a:visited, a:active {color:; transition: 2s; -webkit-transition: 2s;}
a:hover {color:;}
[edit]
Ick, sorry if I pinged a group. >.<