Cursor for Hover:link, Normal Cursor, How do I have 2 different ones? |
![]() ![]() |
Cursor for Hover:link, Normal Cursor, How do I have 2 different ones? |
Jul 1 2005, 09:25 AM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 137 Joined: Feb 2005 Member No: 103,647 |
How do I have 2 different cursors so that theres an arrow, but when you hover over a link, it turns into a crosshair?
Heres code if it helps |
|
|
|
Jul 1 2005, 10:13 AM
Post
#2
|
|
![]() mmm hmmm ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,591 Joined: Sep 2004 Member No: 47,325 |
to your a.hover tag add cursor: crosshair;
|
|
|
|
Jul 1 2005, 11:34 AM
Post
#3
|
|
![]() You'll find me in your dreams. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,536 Joined: Mar 2005 Member No: 114,010 |
.....Like this. You can apply this to your stylesheet if you so wish.
CODE <style type='text/css'>body{cursor: default;} a:link, a:active, a:hover{cursor: crosshair;}</style>
|
|
|
|
Jul 5 2005, 11:26 AM
Post
#4
|
|
|
Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 137 Joined: Feb 2005 Member No: 103,647 |
OK I did this-
a:active, a:link, a:visited { text-decoration:underline; font-size:11px; color: A51A19; } img { border:none; } div.smalltext { text-align:center; } a:hover{cursor: crosshair;} { text-decoration: none; color:# 911615; } ..Only problem is, some of my links spaz out when you hover over them- its like they're trying to figure out if they should do the cursor or change color and underline. They should do both! |
|
|
|
Jul 5 2005, 12:29 PM
Post
#5
|
|
![]() You'll find me in your dreams. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,536 Joined: Mar 2005 Member No: 114,010 |
..... -shakes head-
CODE a:hover{cursor: crosshair; text-decoration: none; color:# 911615; }
|
|
|
|
Jul 5 2005, 01:45 PM
Post
#6
|
|
|
Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 137 Joined: Feb 2005 Member No: 103,647 |
|
|
|
|
Jul 5 2005, 02:35 PM
Post
#7
|
|
![]() You'll find me in your dreams. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,536 Joined: Mar 2005 Member No: 114,010 |
Shakes head = Like this.
As for getting the image map to work...... Let me go play around with stuff. |
|
|
|
![]() ![]() |