Help talk:Customizing toolbars
Appearance
Hide
[edit]How can I hide most of the default links on the left side bar like Main Page, Contents, Help, Contact page, etc? The editor whose username is Z0 17:26, 28 June 2018 (UTC)
- @Z0: those links are not in a toolbar. Try WP:HD, or failing that, WP:VPT. Whichever one you choose, it is essential that you state which skin you are using; this is configured at Preferences → Appearance. --Redrose64 🌹 (talk) 21:51, 28 June 2018 (UTC)
- @Z0: If you like, placing the below code in your common.css page will remove the entire sidebar for you.
- –Ammarpad (talk) 20:44, 30 June 2018 (UTC)
/* This moves the sidebar off-screen */ #mw-panel { opacity: 0; margin-left: -11em; } /* This moves other stuff into the leftover space */ #content, #head-base, #footer, #mw-head-base { margin-left: -1px; } /* Nicer presentation for the left-hand tabs */ #left-navigation { margin-left: 1em; }