Manual:Tagline (Site Subtitle)/de
This help page covers useful information on using a subtitle on your wiki.
Die Tagzeile ändern
Die Tagzeile erscheint auf jeder Seite direkt unter dem Seitentitel (standardmäßig versteckt in den Skins Monobook und Vector, außer beim Druck). Sie kann durch Änderung der Systemnachricht MediaWiki:Tagline angepasst werden. Falls sie undefiniert ist, wird sie defaultmäßig auf From {{SITENAME}}
gesetzt.
Add the following to MediaWiki:Common.css if you want the tagline to display in all skins, or to MediaWiki:Monobook.css if you want to adjust only the Monobook skin:
#siteSub {
display: block;
}
If you don't like the way it looks (the HTML displaying the text is H3 that displays bold by default in most browsers) add some CSS style declarations to that, e.g.:
#siteSub {
display: block; font-weight: normal; font-size: normal;
}
Entfernen von der Hauptseite
If tagline is unhidden and you want to hide it for the Wiki's main page, insert the following .css code in your Wiki's MediaWiki:Common.css page:
body.page-Main_Page.action-view #siteSub,
body.page-Main_Page.action-submit #siteSub {
display: none;
}
Siehe auch
- Manual:Interface/Pagetitle - provides the HTML
<title></title>
code on each MediaWiki page - Extension:CustomSubtitle - allows to define a custom subtitle on every page