Difference between revisions of "Template:Multicol"

From Shadow of the Throne Wiki
Jump to: navigation, search
(Initial version)
 
(Fixed typos in the examples.)
Line 3: Line 3:
  
 
<pre>
 
<pre>
  {{User:Franl/t:MultiCol}}
+
  {{MultiCol}}
 
  This text appears in the first column.
 
  This text appears in the first column.
  {{User:Franl/t:ColBreak}}
+
  {{ColBreak}}
 
  This text appears in the second column.
 
  This text appears in the second column.
  {{User:Franl/t:ColBreak}}
+
  {{ColBreak}}
 
  This text appears in the third column.
 
  This text appears in the third column.
  {{User:Franl/t:EndMultiCol}}
+
  {{EndMultiCol}}
 
</pre>
 
</pre>
  
Line 15: Line 15:
  
 
<pre>
 
<pre>
  {{User:Franl/t:MultiCol|50%}}
+
  {{MultiCol|50%}}
 
  This text appears in the first column.
 
  This text appears in the first column.
  {{User:Franl/t:ColBreak}}
+
  {{ColBreak}}
 
  This text appears in the second column.
 
  This text appears in the second column.
  {{User:Franl/t:ColBreak}}
+
  {{ColBreak}}
 
  This text appears in the third column.
 
  This text appears in the third column.
  {{User:Franl/t:EndMultiCol}}
+
  {{EndMultiCol}}
 
</pre>
 
</pre>
  

Revision as of 03:21, 11 June 2006

Use this template to start a multi-column section of a page. For example:

 {{MultiCol}}
 This text appears in the first column.
 {{ColBreak}}
 This text appears in the second column.
 {{ColBreak}}
 This text appears in the third column.
 {{EndMultiCol}}

This template has one optional parameter: The width of the table used to implement the columns. This can be an absolute value (e.g., 12cm) or a percentage of the page width (e.g., 50%). This parameter defaults to 100%. For example, to create a multi-column section of a page that is only 50% the width of the page, do this:

 {{MultiCol|50%}}
 This text appears in the first column.
 {{ColBreak}}
 This text appears in the second column.
 {{ColBreak}}
 This text appears in the third column.
 {{EndMultiCol}}

The multi-column region is always positioned on the left of the page. To change this, place the above Wikitext in a DIV block that has the CSS attribute text-align set to either center or right.