html - Custom cursor not working? -


i have slideshow navigation applied when user hovers , clicks on right hand side , left hand side of page.

for reason when set cursor pointer or w-resize work fine apply own image below don't work.

i wondering if had ideas why might happening. have made sure image below 30px x 30px have seen mentioned issue can't seem work.

below css i'm using…

css

#previous {     position: absolute;     top: 0;     bottom: 0;     padding: 5px 55px;     left: 0;     z-index: 999;     opacity: 0;     cursor: url(images/crosscursor.png), auto; }  #next {     position: absolute;     top: 0;     bottom: 0;     padding: 5px 55px;     right: 0;     z-index: 999;     opacity: 0;     cursor: url(images/crosscursor.png), auto; } 

many thanks!

try cursor: url('/images/crosscursor.png'), auto;


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -