Template:Two column: Difference between revisions

From PortlandWiki
Jump to navigation Jump to search
(+documentation)
(if other column has a specified width, default to the remainder, not 50%)
Line 1: Line 1:
<div>
<div>
<br style="clear:both;" />
<br style="clear:both;" />
<div style="float:left; width:{{#if:{{{left column width|}}}|{{{left column width}}}|49%}};">
<div style="float:left; width:{{#if:{{{left column width|}}}|{{{left column width}}}|{{#if:{{{right column width|}}}||49%}}}};">
{{{left column}}}
{{{left column}}}
</div>
</div>
<div style="float:right; width:{{#if:{{{right column width|}}}|{{{left column width}}}|49%}};">
<div style="float:right; width:{{#if:{{{right column width|}}}|{{{left column width}}}|{{#if:{{{right column width|}}}||49%}}}};">
{{{right column}}}
{{{right column}}}
</div>
</div>
Line 30: Line 30:


=== Notes ===
=== Notes ===
* '''left column width''' and '''right column width''' are optional, will default to 50% if not specified. Can be pixels (eg. 200px).
* '''left column width''' and '''right column width''' are optional. If neither is specified, it will default to 50-50% column widths. Can be pixels (eg. 200px).


[[Category:Layout templates]]
[[Category:Layout templates]]
</noinclude>
</noinclude>

Revision as of 21:18, 27 September 2011


{{{left column}}}

{{{right column}}}



How to use

Copy and paste the following code to use this two-column layout template.

{{Two column
| left column width =
| left column =

YOUR LEFT COLUMN CONTENT HERE

| right column width =
| right column =

left YOUR RIGHT COLUMN CONTENT HERE

}}

Notes

  • left column width and right column width are optional. If neither is specified, it will default to 50-50% column widths. Can be pixels (eg. 200px).