I\'m customising my homepage http://geotheory.co.uk/ with an interactive animation, but having trouble making it feel more seemeless in the page. I want to remove the animat
Add margin: 0; to the body tag in your css, and display: block; to the canvas tag in your css.
margin: 0;
body
display: block;
canvas
Example:
canvas { display:block; } body { margin:0; }