Jump to content

MediaWiki:Vector-2022.css: Difference between revisions

From TheOpenRoad Support
No edit summary
No edit summary
Line 11: Line 11:
.mw-logo-wordmark {
.mw-logo-wordmark {
     display: none !important;
     display: none !important;
}
/* Upscale the Vector 2022 logo image */
.vector-header .mw-logo-icon {
    max-height: 80px;    /* Increase height */
    max-width: 300px;    /* Increase width */
    background-size: contain !important; /* Ensure it scales properly */
    background-repeat: no-repeat !important;
}
}

Revision as of 19:31, 19 June 2025

/* Hide the site name text next to the logo image in Vector 2022 */

.vector-header .mw-logo-text {
    display: none !important;
}

.vector-header .mw-logo-container > a:nth-child(2) {
    display: none !important;
}

.mw-logo-wordmark {
    display: none !important;
}

/* Upscale the Vector 2022 logo image */

.vector-header .mw-logo-icon {
    max-height: 80px;    /* Increase height */
    max-width: 300px;    /* Increase width */
    background-size: contain !important; /* Ensure it scales properly */
    background-repeat: no-repeat !important;
}