Be a Supporter!

Html Link Question

  • 382 Views
  • 5 Replies
New Topic Respond to this Topic
dburford11
dburford11
  • Member since: Apr. 1, 2005
  • Offline.
Forum Stats
Member
Level 03
Programmer
Html Link Question 2006-12-06 14:44:18 Reply

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
Response to Html Link Question 2006-12-06 14:48:19 Reply

You mean in Flash?

Jessii
Jessii
  • Member since: Feb. 10, 2005
  • Offline.
Forum Stats
Member
Level 36
Movie Buff
Response to Html Link Question 2006-12-06 14:51:44 Reply

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
Response to Html Link Question 2006-12-06 14:58:20 Reply

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 ]

BBS Signature
phyconinja
phyconinja
  • Member since: Sep. 18, 2004
  • Offline.
Forum Stats
Member
Level 25
Blank Slate
Response to Html Link Question 2006-12-06 15:07:08 Reply

At 12/6/06 02:48 PM, NinoGrounds wrote: You mean in Flash?

yeah.. thats why the title says "Html Link Question"

but its like
link : when mouse not over
link? : when mouse over

NinoGrounds
NinoGrounds
  • Member since: Nov. 28, 2005
  • Offline.
Forum Stats
Member
Level 19
Programmer
Response to Html Link Question 2006-12-06 15:22:27 Reply

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: "-> ":
}