hovers, how do I do this |
hovers, how do I do this |
Jul 25 2006, 08:56 PM
Post
#1
|
|
![]() Hello My Name Is INSERT HERE ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,372 Joined: Apr 2006 Member No: 394,903 |
okay
how do I make different hovers like I mean you hover something and a scribble goes through it and then you hover a different thing and like an x goes through it how do you have different hovers for different links? |
|
|
|
![]() |
| *mipadi* |
Jul 26 2006, 10:12 AM
Post
#2
|
|
Guest |
For links, you can specify different pseudo-properties in your CSS file:
CODE A:link {/*styles for "normal" links*/} A:visited {/*styles for visited links*/} A:hover {/*here's what you want: styles when you hover over a link*/} A:active {/*styles when a link is in the process of being loaded*/} You can apply the :hover property to almost any element—it works with more than just links! But to make a line appear through links when you hover over them, use something like this: CODE A:hover {text-decoration:line-through;}
|
|
|
|
n00b hovers Jul 25 2006, 08:56 PM
fr0stbite First you need multiple images and knowlege of how... Jul 26 2006, 12:56 AM
n00b post the code please Jul 26 2006, 01:26 AM
Listelle Here's a nifty tutorial that might help. Jul 27 2006, 01:06 PM![]() ![]() |