In the left sidebar from the Site Tab, click SITE SETTINGS to open up the panel. From the popup, select Integrations. This is where you will see we've built in global settings site wide (this means you can use it on any page). Under the nested Integrations, select Site Customizations.
If you are adding to an existing website, you will need to add the custom code in order for your effects to work. To do this, go to SITE SETTINGS. Click the Integrations tab and select + Add Custom Code. In the center panel, select + ADD CODE TO... and from the dropdown, select Add HTML to the head and paste:
Paste Into Pre-Existing Site
<script> (function () { // Prevent double-init if the script runs more than once if (window.__nfCursorInit) return; window.__nfCursorInit = true;
function initCursor() { if (document.querySelector('.custom-cursor-wrapper')) return; // already exists
// Link hover via delegation — catches every <a>, including ones rendered later document.addEventListener('mouseover', (e) => { if (e.target.closest('a')) dot.classList.add('link-hover'); }); document.addEventListener('mouseout', (e) => { const to = e.relatedTarget; // only drop the class when actually leaving the link (not moving to its child) if (e.target.closest('a') && !(to && to.closest && to.closest('a'))) { dot.classList.remove('link-hover'); } }); }