Type: Browser Incompatibility Fix Software: shimmie2 Module: (themes) Reference: http://trac.shishnet.org/shimmie2/browser/branches/branch_2.2/themes/danbooru/style.css http://trac.shishnet.org/shimmie2/browser/branches/branch_2.2/themes/default/style.css http://trac.shishnet.org/shimmie2/browser/branches/branch_2.2/contrib/link_image/_style.css Verified: Yes Solved: Yes Official res.: Unknown Author: Daniel Marschall Date: 2008-10-27 1. If you want to be sure that the user see the hand-cursor then you have to break the CSS-rule and set the cursor to hand AND cursor (in the exactly that order). ~ themes/danbooru/style.css # Find *[onclick] {cursor: pointer;} # Replace with *[onclick] {cursor: hand; cursor: pointer;} # Line 63 ~ themes/default/style.css # Find *[onclick] {cursor: pointer;} # Replace with *[onclick] {cursor: hand; cursor: pointer;} # Line 58 ~ contrib/link_image/_style.css # Find #Link_to_Image label { width:30%; text-align:left; padding-right:2%; cursor:pointer; } # Replace with #Link_to_Image label { width:30%; text-align:left; padding-right:2%; cursor: hand; cursor: pointer; } # Line 24