Skip to main content
Participant
June 19, 2009
Question

Cursor disappear in Dreamweaver 8

  • June 19, 2009
  • 1 reply
  • 8470 views

Hallo. i have a problem. i made a site and i put a cursor at the folder of my site. then i check a foto of the site which i want to appear the specific cursor i want when i put the mouse on it. i went to the code and i put the url and the name of the cursor. When i go to preview all works fine. But when i go to the folder of my site and try to open whith double click one page the cursor doesnt work. Why does it happent?

This topic has been closed for replies.

1 reply

pziecina
Legend
June 19, 2009

Can you show me a short example of the code you are using for the cursor.

PZ

okomotaAuthor
Participant
June 19, 2009

#Layer10 {
    position:absolute;
    width:484px;
    height:181px;
    z-index:6;
    left: 19px;
    top: 426px;
    background-image: url(earscope.jpg);
    cursor: url(harrow.cur);

the cursor name as you see is the ''harrow.cur.'' i put it into the folder of my site

pziecina
Legend
June 19, 2009

cursor: url(harrow.cur);

Unfortunately even though using a url for the cursor property is valid, it is effectively unsupported by many browsers at this time. Most browsers support other cursor properties, but not url.

For more info on the cursor propert see: http://www.w3schools.com/CSS/pr_class_cursor.asp

HTH

PZ