Jump to content

Welcome to the βeta launch of Creatorpedia, make your favorite creator shine.

MediaWiki:Common.css: Difference between revisions

From Creatorpedia, the creator economy encyclopedia
Line 14: Line 14:
}
}
/* 2. Show sitenotice only on Main Page */
/* 2. Show sitenotice only on Main Page */
.mainpage #siteNotice {
body.page-Main_Page #siteNotice {
     display: block;
     display: block;
}
}

Revision as of 17:30, 10 April 2026

/* CSS placed here will be applied to all skins */

/* hide main page title */
body.page-Main_Page h1.firstHeading { display: none; }

/* hide lastmodified date from homepage */
body.page-Main_Page #footer-info-lastmod {
    display: none;
}

/* 1. Hide sitenotice on all pages */
#siteNotice {
    display: none;
}
/* 2. Show sitenotice only on Main Page */
body.page-Main_Page #siteNotice {
    display: block;
}