MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 159: | Line 159: | ||
text-align: center; | text-align: center; | ||
width: 100%; | width: 100%; | ||
} | |||
/* Fix the logo positioning */ | |||
#p-logo { | |||
position: absolute; | |||
top: 10px; /* Adjust as needed */ | |||
left: 50%; | |||
transform: translateX(-50%); /* Center the logo */ | |||
width: 250px; /* Adjust width if necessary */ | |||
height: auto; | |||
z-index: 100; /* Ensure it's above other elements */ | |||
} | |||
/* Push the sidebar down so it doesn't overlap */ | |||
#mw-panel { | |||
position: relative; | |||
margin-top: 80px; /* Adjust as needed */ | |||
} | } |