MediaWiki:Common.css
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Hide the site title next to the logo */
.mw-wiki-title,
.mw-logo-wordmark,
#p-logo-text {
display: none !important;
}
/* Show custom wiki logo in the header */
.mw-logo-wordmark {
display: block !important;
width: 220px;
height: 40px;
margin-top: 15px;
background-image: url("https://bharatwikipedia.org/images/BharatWikipedia.svg");
background-repeat: no-repeat;
background-size: contain;
text-indent: -9999px;
overflow: hidden;
white-space: nowrap;
}
/* Ensure footer icons align horizontally */
#footer-icons {
display: flex !important;
justify-content: flex-end !important;
align-items: center !important;
flex-direction: row-reverse !important; /* MediaWiki icon stays right */
gap: 18px !important;
}
/* ConnexAbility footer badge */
#footer-icons::before {
content: "";
display: inline-flex;
justify-content: center;
align-items: center;
width: 110px; /* balanced width */
height: 36px; /* same visual height as MediaWiki badge */
background-image: url("/images/AConnexAbilityProject.svg");
background-size: 75% auto; /* gives breathing space */
background-position: center;
background-repeat: no-repeat;
border: 1px solid #a2a9b1; /* same border as MediaWiki box */
border-radius: 4px;
background-color: #fff;
padding: 4px 8px;
box-sizing: border-box;
}