Jump to content

MediaWiki:Common.css: Difference between revisions

From WikiBachiller
Created page with "CSS placed here will be applied to all skins: #footer { display: none; } #mw-panel .body { visibility: hidden; }"
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
#footer { display: none; }
#footer { display: none; }
#mw-panel .body { visibility: hidden; }
#mw-panel .body { visibility: hidden; }
/* Hide the sidebar completely */
#mw-panel {
    display: none !important;
}
/* Hide the top toolbox / actions menu */
#p-tb, #p-cactions {
    display: none !important;
}
/* Hide the footer */
#footer {
    display: none !important;
}
/* Optional: hide languages box */
#p-lang {
    display: none !important;
}

Revision as of 14:20, 23 January 2026

/* CSS placed here will be applied to all skins */

#footer { display: none; }
#mw-panel .body { visibility: hidden; }

/* Hide the sidebar completely */
#mw-panel {
    display: none !important;
}

/* Hide the top toolbox / actions menu */
#p-tb, #p-cactions {
    display: none !important;
}

/* Hide the footer */
#footer {
    display: none !important;
}

/* Optional: hide languages box */
#p-lang {
    display: none !important;
}