Template:Hidden

From RuneRealm Wiki

This is the current revision of this page, as edited by Alex (talk | contribs) at 00:31, 17 October 2024 (Created page with "<includeonly>{|class="mw-collapsible {{#switch:{{{show}}}|autocollapse|collapsed=mw-collapsed|#default=}}" !style="font-weight:{{{fw1|normal}}}; color:{{{tc1|}}}; background-color:{{{bg1|}}}" align="{{{ta1|left}}}"|{{{header|{{{1|}}}}}} |- |style="font-weight:{{{fw2|normal}}}; color:{{{tc2|}}}; background-color:{{{bg2|}}}" align="{{{ta2|left}}}"|{{{content|{{{2|}}}}}} |}</includeonly><noinclude>{{/doc}} {{PAGENAME}}</noinclude>"). The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Template documentation
This documentation is transcluded from Template:Hidden/doc. [edit] [history] [purge]

This template displays the first parameter (the heading) with a [show] link on the right. If [show] is clicked by the user, the second parameter (the body) is displayed below the heading and the [show] link becomes [hide]. Clicking on [hide] then hides the body again and the [hide] link becomes [show] again.

Usage

Basic usage example
{{Hidden|header|content}}

Only two parameters are required for this template:

header
text for header (or title); alternative to using unnamed parameter {{{1}}}
content
text for content (or body); alternative to using unnamed parameter {{{2}}}

Note: if not defined, it will be blank with a show or hide.

Optional parameters

Header

bg1
Add background colour to the header.
tc1
Add colour to the text of the header.
fw1
Add font weight of the header.
ta1
Add text alignment to the header.

Content

bg2
Add background colour to the content.
tc2
Add colour to the text of the content.
fw2
Add font weight of the content.
ta2
Add text alignment to the content.

Collapsibility

show
Change the collapsibility of the template ("autocollapse" or "collapsed" only)

Examples

Simple

In this example only the two required parameters are specified.

Code
{{hidden|Title text here|Body text line 1<br>Body text line 2}}
Result
Title text here
Body text line 1
Body text line 2

Advanced

Code
{{hidden|Title text here|Body text line 1<br>Body text line 2|bg1=#ccccff|tc1=black}}
Result
Title text here
Body text line 1
Body text line 2

Expert

Code
{{hidden|Title text here|Body text line 1<br>Body text line 2|bg1=#ccccff|bg2=#454545|ta1=center|tc1=blue|tc2=gray|show=collapsed}}
Result
Title text here
Body text line 1
Body text line 2

Issues

There is a current issue where if the template is in a table that has "wikitable" as a class, it will give it a border, a default background colour, and change the text alignment.