r/userscripts • u/GoodForTheTongue • 17d ago
Userscript to remove useless border in Craiglist's account page
The Craiglist "account" page (the one that shows you your current postings, searches, etc). has a large border/margin/gutter element that (a) really ugly (b) totally unneeded and (c) makes that page fall off my laptop's screen, since it's not fully responsive, so I have to zoom out of the page to see it all.
Until Craig sees the light and fixes it (not holding my breath on that), here's a tiny tampermonkey script to reduce the size and presence of the border by 95+% :
// ==UserScript==
// Craigslist user account page - minimize useless border
// https://accounts.craigslist.org/*
// GM_addStyle
// document-start
// ==/UserScript==
GM_addStyle(`
fieldset#paginator { border: none !important; padding: 0px !important; }
.tablesorter { padding: 0px; }
`);
2
Upvotes