MediaWiki:Vector-2022.css: Difference between revisions
Created page with "→Resize the logo in Vector 2022 skin: .vector-header-logo { width: 200px; height: auto; } .vector-header-logo img { max-height: 60px; →tweak this height as needed: width: auto; } →Optional: hide or style the text next to the logo: .vector-header-title { font-size: 16px; margin-left: 8px; color: #444; }" |
No edit summary |
||
| Line 15: | Line 15: | ||
margin-left: 8px; | margin-left: 8px; | ||
color: #444; | color: #444; | ||
} | |||
.vector-header-title { | |||
display: none; | |||
} | } | ||
Revision as of 09:26, 18 June 2025
/* Resize the logo in Vector 2022 skin */
.vector-header-logo {
width: 200px;
height: auto;
}
.vector-header-logo img {
max-height: 60px; /* tweak this height as needed */
width: auto;
}
/* Optional: hide or style the text next to the logo */
.vector-header-title {
font-size: 16px;
margin-left: 8px;
color: #444;
}
.vector-header-title {
display: none;
}