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)
/* 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;
}
Is it possible to pull in the Wikidata Q for a page using this? Ie I want to use the Q in a url. I see we have this for the pagename mw.config.get( 'wgPageName' ) Doc James (talk · contribs · email) 20:24, 8 December 2024 (UTC)