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? |
|
|
|
![]() |
Jul 26 2006, 12:56 AM
Post
#2
|
|
![]() It's magically retarded. ![]() ![]() ![]() Group: Member Posts: 87 Joined: Jan 2004 Member No: 2,179 |
First you need multiple images and knowlege of how to map them correctly (place them where you want them to be on the screen). For the hover effect, these specific images may not be included in your background image, if you're using one. If you've got that... I'll post the code for ya.
|
|
|
|
Jul 26 2006, 01:26 AM
Post
#3
|
|
![]() Hello My Name Is INSERT HERE ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,372 Joined: Apr 2006 Member No: 394,903 |
post the code please
|
|
|
|
| *mipadi* |
Jul 26 2006, 10:12 AM
Post
#4
|
|
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;}
|
|
|
|
Jul 27 2006, 01:06 PM
Post
#5
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 134 Joined: Jun 2006 Member No: 424,880 |
Here's a nifty tutorial that might help.
|
|
|
|
![]() ![]() |