<style>
block inside the Head Code section of Project Settings using cursor: url('your-image-url'), auto;
, then publish your site to apply it site-wide.You can easily apply a custom cursor site-wide in Webflow using Webflow’s built-in custom code settings without deep coding knowledge. Since you’ve already uploaded your custom cursor image, just follow these steps.
https://cdn.prod.website-files.com/.../custom-cursor.png
Go to your Webflow dashboard and open your site.
Click on Project Settings > Custom Code tab.
In the Head Code area, paste the following CSS inside a <style>
tag:
<style>body { cursor: url('PASTE-YOUR-IMAGE-URL-HERE'), auto; }</style>
Replace PASTE-YOUR-IMAGE-URL-HERE
with the link you copied.
auto
or default
in the CSS to ensure usability.To apply a custom cursor site-wide in Webflow, copy the uploaded image URL from the Assets panel, then insert a <style>
block with custom CSS into your site’s Head Code in Project Settings. Re-publish your site to activate the cursor across all pages.