jac.cunningham Posted March 5 Share Posted March 5 (edited) I followed a YouTube guide but it's old and not getting a response. He said either CSS or JS https://codepen.io/designcourse/pen/GzJKOE In order for the code to work, do I need any additional elements besides the CSS code in the middle block of the url displayed above? I uploaded the CSS code plus an image, eg a black dot for the cursor (where the code says //cursor: none; ) and all I get is a black dot. If I take out the black dot url, I get no change. I am clearly missing something. Working on 7.1 The cursor displayed at the bottom of the screen is exactly what I want to achieve. Edited March 5 by jac.cunningham URL disappeared Link to comment
tuanphan Posted March 8 Share Posted March 8 Your Codepen uses SCSS, but Squarepace support CSS or LESS only You can convert it to CSS first Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Solution jac.cunningham Posted April 1 Author Solution Share Posted April 1 Thank you. I worked it out. Also had to add ", auto !important; " after the URL. // CURSOR change HOVER // body { margin: 0; height: 100vh; cursor: none, auto; /REPLACE none with custom URL/ } a:hover{ cursor: url(REPLACE none with custom URL), auto !important; /REPLACE THIS URL/ } tuanphan 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment