MediaWiki/Global CSS
It can be very useful to enable Global CSS.
Tip: edit m:Special:MyPage/global.css (valid for all Wikimedia websites; you only need to encode this once).
Color code redirect pages
editA small CSS style can do wonderful things with your websites:
#history-toolbox {display: block !important;}
.mw-disambig {background-color: #AFEEEE;}
.mw-redirect {background-color: wheat;}
- The first option adds an additional menu on history pages (copyright check)
- Disambiguation will be visually indicated
- Redirects will be visually indicated
Notes
- Most of the times a disambiguation, or even a redirect, is bad practice.
- Sometimes a redirect is OK when a future lemma could/would/might be created.
Section heading colors
editTo color the section headers:
h1 {color: #990000;}
h2 {color: #339966;}
h3 {color: #006699;}
More options
edit.gallerytext {text-align: center;}
.mw-editsection {display: none;}
- Center gallery captions
- Omit edit commands (you should enable right click to edit page section)