Change cursor icon

Hi,

I’m working with H-Code theme which shows an annoying “+” icon when the cursor hovers over the portfolio. (see test page here: http://lapisbranco.com/work-test/ ). Anyone knows any CSS I could use to just go back to the normal cursor?

On another website I did a long time ago I used the CSS below but for some reason it’s not working for this new one. Any thoughts?

figure:hover img {
cursor: url(“assets/images/icon-zoom-white.png”), pointer;
}

Hi

Please use this css:

figure:hover img {
   cursor: pointer !important;
}

Thanks

Thats it! Many many thanks!

1 Like