Template:Button
From TheKolWiki
[edit]
{{Button}}
{| cellspacing="0" style="{{#ifeq:{{{center|y}}}|y|margin-left: auto; margin-right: auto; margin-bottom: 8px;|}}" id="{{{1}}}"
|- | {{{pre|}}} | style="border: 2px black solid; font-family: Arial, Helvetica, sans-serif; {{#ifeq:{{{disabled|n}}}|y|color:#CCCCCC;|}} font-size: 10pt; font-weight: bold; background-color: #FFFFFF; padding-right: 8px; padding-left: 8px;{{#if:{{{width|}}}|width:{{{width}}};}}{{#ifeq:{{{centertext|n}}}|y|text-align:center;|}}" | {{{1}}} | {{{post|}}}{{#if:{{{bluepost|}}}| <span style="color:blue;">'''{{{bluepost}}}'''</span>}}
|}Creates a button in the style typically seen in the game.
Usage
- To create a centered button:
- {{button|Text}}
- To create an un-centered button (with no left/right margins), use
- {{button|Text|center=n}}
- To create an button with each line of multi-line text centered, use
- {{button|Text|centertext=y}}
- To create a grayed out button:
- {{button|Text|disabled=y}}
- To create a button with text following:
- {{button|Text|post=(Following Text)}}
- To create a button with text preceding:
- {{button|Text|pre=(Preceding Text)}}
- Width may be specified with the
width
argument.
In either version, "Text" can be anything, including wiki links to other pages.
Examples
{{button|Log In}}
yields:
Log In |
{{button|Buy Item}}
yields:
Buy Item |
{{button|Sail Away! (3)}}
yields:
Sail Away! (3) |
{{button|[[Loathing Legion hammer]]|center=n}}
yields
Loathing Legion hammer |
{{button|Travel back to a Delicious Meal<br>(3 minutes)|textcenter=y}}
yields
Travel back to a Delicious Meal (3 minutes) |
{{button|Sneak past it|disabled=y}}
yields:
Sneak past it |
{{button|Go to the First Floor|disabled=y|post=Wait, maybe not}}
yields:
Go to the First Floor | Wait, maybe not |
{{button|Go down the elevator shaft|bluepost=[Bad idea!]}}
yields:
Go down the elevator shaft | [Bad idea!] |