Html Link Question
- dburford11
-
dburford11
- Member since: Apr. 1, 2005
- Offline.
-
- Forum Stats
- Member
- Level 03
- Programmer
Can someone tell me how to make a link have a character by it when ever you scroll over it, like it normally looks like this: Link but when you scroll over it it goes to this: -> Link? Can anyone help me.
- NinoGrounds
-
NinoGrounds
- Member since: Nov. 28, 2005
- Offline.
-
- Forum Stats
- Member
- Level 19
- Programmer
- Jessii
-
Jessii
- Member since: Feb. 10, 2005
- Offline.
-
- Forum Stats
- Member
- Level 36
- Movie Buff
I have no idea what you just said. Maybe try to explain it again or give us an example of where you've seen it done before.
- elbekko
-
elbekko
- Member since: Jul. 23, 2004
- Offline.
-
- Forum Stats
- Member
- Level 16
- Blank Slate
I believe he wants a :hover effect. Like when someone hovers over the link a "?" gets added.
"My software never has bugs. It just develops random features. " - Unknown
[ FluxBB developer | Quickmarks 0.5.1 | Strings & Ints - my blog ]
- phyconinja
-
phyconinja
- Member since: Sep. 18, 2004
- Offline.
-
- Forum Stats
- Member
- Level 25
- Blank Slate
- NinoGrounds
-
NinoGrounds
- Member since: Nov. 28, 2005
- Offline.
-
- Forum Stats
- Member
- Level 19
- Programmer
At 12/6/06 02:44 PM, dburford11 wrote: Can someone tell me how to make a link have a character by it when ever you scroll over it, like it normally looks like this: Link but when you scroll over it it goes to this: -> Link? Can anyone help me.
Oh, I get it now, it's easy:
CSS:
a:hover:before {
content: "-> ":
}


