I need to change custom cursor for scrollbar in Chrome. I have lightbox which has set custom cursor with big X and Close text. Problem is that in chrome the cursor definitio
Try adding cursor: auto to your scrollable class
cursor: auto
.scrollable { cursor: auto; }
Works with textareas, not sure with divs.