Results 1 to 4 of 4

Thread: Disable the "hand" cursor when the curosr is ovar a link

  1. #1
    Join Date
    Aug 2005
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Disable the "hand" cursor when the curosr is over a link

    If someone can do this script, can you post it to me, or just say it is impossible... (if it is)


    Thanks! Sondet
    Last edited by Sondet; 08-21-2005 at 07:12 PM. Reason: Miss spell...

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    HTML Code:
    <a href="some.htm" style="cursor:default;">Link Text</a>
    There are many possible cursor styles. Default is the arrow cursor. The style can also be set in a stylesheet:
    Code:
    <style type="text/css">
    a {
    cursor:default;
    }
    </style>
    If placed in the head of the document, will change all the link cursors to arrows.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Aug 2005
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you!

    Pretty easy though...

    But that is good!

  4. #4
    Join Date
    Aug 2005
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    But Hey!

    I came up with a new question...

    If you have a custume made cursor... What can i do to keep that cursor instead of the "hand" on the link?

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •