Jump to content

MediaWiki:Common.css: Difference between revisions

From Evil...ish
Created page with "CSS placed here will be applied to all skins: Adjust the logo size: .mw-header-logo a, .mw-logo a { width: 200px; Example: new width in pixels: height: 200px; Example: new height in pixels: background-size: 100% 100%; Ensures the entire image is displayed: }"
 
No edit summary
Line 3: Line 3:
/* Adjust the logo size */
/* Adjust the logo size */
.mw-header-logo a, .mw-logo a {
.mw-header-logo a, .mw-logo a {
     width: 200px; /* Example: new width in pixels */
     width: 300px; /* Example: new width in pixels */
     height: 200px; /* Example: new height in pixels */
     height: 300px; /* Example: new height in pixels */
     background-size: 100% 100%; /* Ensures the entire image is displayed */
     background-size: 100% 100%; /* Ensures the entire image is displayed */
}
}

Revision as of 19:46, 13 January 2026

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

/* Adjust the logo size */
.mw-header-logo a, .mw-logo a {
    width: 300px; /* Example: new width in pixels */
    height: 300px; /* Example: new height in pixels */
    background-size: 100% 100%; /* Ensures the entire image is displayed */
}