MediaWiki:Common.css: Difference between revisions
|  (Created page with "→CSS placed here will be applied to all skins:  .skin-minerva .header .branding-box .site-title {     display: none; }  →Add your logo:  .skin-minerva .header .branding-box {     background-image: url('/resources/assets/LC_Logo_1x.png');     background-size: contain; →Adjust as necessary:      background-repeat: no-repeat;     background-position: center; }") | 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 */ | ||
| . | .minerva-header .branding-box  { | ||
|      display: none; |      display: none; | ||
| } | } | ||
| /* Add your logo */ | /* Add your logo */ | ||
| . | .minerva-header .branding-box { | ||
|      background-image: url('/resources/assets/LC_Logo_1x.png'); |      background-image: url('/resources/assets/LC_Logo_1x.png'); | ||
|      background-size: contain; /* Adjust as necessary */ |      background-size: contain; /* Adjust as necessary */ | ||
Revision as of 14:02, 11 February 2024
/* CSS placed here will be applied to all skins */
.minerva-header .branding-box  {
    display: none;
}
/* Add your logo */
.minerva-header .branding-box {
    background-image: url('/resources/assets/LC_Logo_1x.png');
    background-size: contain; /* Adjust as necessary */
    background-repeat: no-repeat;
    background-position: center;
}