Thread: How do I make the cat go away?
To hide the cat, enter the following lines into the console in the Browser/Developer Tools in your web browser of choice:
var link = document.getElementById('wrap-cat');
link.style.display = 'none';
ahh, that's better. Note: will not persist between page reloads.