MediaWiki:Common.css: Difference between revisions

Update header to use bg.png in page-base and ensure solid beige body
Fix content overlapping header by making page-base static, and remove mountain background from content box
Line 662: Line 662:
/* Make sure the content box (#content) has a solid background so it doesn't look faded */
/* Make sure the content box (#content) has a solid background so it doesn't look faded */
#content {
#content {
    background-color: #f1e7d3 !important;
}
/* --- 20. Final Layout Fixes --- */
/* Remove absolute positioning from mw-page-base so it actually pushes the content down below the header again */
#mw-page-base {
    position: static !important;
}
/* Ensure the main content box does NOT use the mountain background image, and is strictly solid beige */
#content {
    background-image: none !important;
     background-color: #f1e7d3 !important;
     background-color: #f1e7d3 !important;
}
}