How to disable custom cursor

To disable the custom cursor open assets/js/init.js and delete or comment next functions

this.customCursor(); on line 81

Custom cursor functions

If you’re using the Advanced workflow add next CSS to source/assets/scss/custom.scss

.df-custom-cursor-wrap {
  display: none;
}

If you’re using the Basic workflow add next CSS to build/assets/css/custom.css

.df-custom-cursor-wrap {
  display: none;
}

Was this page helpful?