Results 1 to 6 of 6

Thread: Cursor help

  1. #1
    Join Date
    Mar 2005
    Location
    on a ranch in Texas
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Cursor help

    I am trying to insert my own cursor and I can't get it to work. I think I did everything it said to do. where it said to insert my cursor which is horse.ani .....I did but it didn't ever show up. Any suggestions? Thanks

  2. #2
    Join Date
    Aug 2004
    Location
    Brighton
    Posts
    1,563
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Please post your code so we can help - ta.

    cr3
    A retired member, drop me a line through my site if you'd like to find me!
    cr3ative media | read the stickies

  3. #3
    Join Date
    Mar 2005
    Location
    on a ranch in Texas
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I don't know what you mean about code??? I just started using HTML yesterday. I figured out how to do alot but not that one thing. This is what I am doing....
    <style>
    <!--
    BODY{
    cursor:url("mycursor.cur");
    }
    -->
    </style>

    I put in horse.ani where the mycursor.cur is but it didn't change anything. Any help would be appreciated. Thank you

  4. #4
    Join Date
    Feb 2005
    Posts
    96
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You need tp upload your cursor image to the same directory as the page in question or else it won't work or you could upload it somewhere else and then link it.

  5. #5
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by cowboytf
    This is what I am doing....
    There are a couple of things you should add, and one thing you should omit.

    <style>
    The style element has a required attribute, type. Whilst some may argue it's not necessary, it is good practice to write correct mark-up.

    <!--
    The practice of "hiding" style sheets (and scripts) became unnecessary several years ago. People only keep doing it because they don't truly understand why it was done in the first place. You can safely omit the opening (<!--) and closing (-->) SGML comment delimiters.

    cursor:url("mycursor.cur");
    You need to include a standard cursor type, which is required by the cursor property. The auto keyword is probably most appropriate as you're applying this change document-wide:

    Code:
    cursor: url(mycursor.cur), auto;
    Be aware that the majority of user agents will not recognise custom cursors.

    Mike

  6. #6
    Join Date
    Mar 2005
    Location
    on a ranch in Texas
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank You So Much For Your Help! I Greatly Appreciate You Taking The Time To Help Me!!!!

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
  •