매뉴얼:슬로건 (사이트 부제)

From mediawiki.org
This page is a translated version of the page Manual:Tagline (Site Subtitle) and the translation is 36% complete.

This help page covers useful information on using a subtitle on your wiki.

슬로건 바꾸기

모든 문서의 제목 바로 아래에 나타나는(그러나 모노북, 벡터 스킨에서는 인쇄할 때 이외에는 기본적으로 숨겨져 있는) 슬로건은 기본적으로 {{SITENAME}}으로 설정되어 있는 MediaWiki:Tagline 시스템 메시지를 수정해서 바꿀 수 있습니다.

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;
}

Removing from Main Page

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;
}

같이 보기