Jump to content

MediaWiki:Common.css: Difference between revisions

From V2_Wiki
Created page with "CSS placed here will be applied to all skins: Make the top-left logo bigger (Vector 2022): .skin-vector .mw-logo-icon { width: 120px !important; tweak size as you like: height: auto !important; } Hide the site name text next to the logo (Vector 2022): .skin-vector .mw-logo-wordmark, .skin-vector .mw-logo-tagline { display: none !important; }"
 
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 */
/* Make the top-left logo bigger (Vector 2022) */
.skin-vector .mw-logo-icon {
    width: 120px !important;  /* tweak size as you like */
    height: auto !important;
}


/* Hide the site name text next to the logo (Vector 2022) */
/* Hide the site name text next to the logo (Vector 2022) */

Revision as of 10:00, 9 September 2025

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

/* Hide the site name text next to the logo (Vector 2022) */
.skin-vector .mw-logo-wordmark,
.skin-vector .mw-logo-tagline {
    display: none !important;
}