MediaWiki:Common.css: Difference between revisions
No edit summary |
mNo edit summary Tag: Reverted |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Hide the site title */ | |||
#p-logo a { | |||
display: none; | |||
} | |||
/* Add a background image for the logo */ | |||
#p-logo { | |||
background-image: url('/images/boat.png'); | |||
background-repeat: no-repeat; | |||
background-size: contain; | |||
width: 150px; /* Adjust width as needed */ | |||
height: 50px; /* Adjust height as needed */ | |||
} | |||
Revision as of 15:29, 10 February 2024
/* CSS placed here will be applied to all skins */
/* Hide the site title */
#p-logo a {
display: none;
}
/* Add a background image for the logo */
#p-logo {
background-image: url('/images/boat.png');
background-repeat: no-repeat;
background-size: contain;
width: 150px; /* Adjust width as needed */
height: 50px; /* Adjust height as needed */
}