Template:Two column: Difference between revisions

From PortlandWiki
Jump to navigation Jump to search
m (fix?)
(adjusting width calculation method (lesser solution, but works))
Line 1: Line 1:
<div>
<div>
<br style="clear:both;" />
<br style="clear:both;" />
<div style="float:left; {{#if:{{{left column width|}}}|width:{{{left column width}}}|{{#if:{{{right column width|}}}||width:49%}}}};">
<div style="float:left; {{#if:{{{left column width|}}}|width:{{{left column width}}}|}};"><div style="padding-right:10px;">
{{{left column}}}
{{{left column}}}
</div>
</div></div>
<div style="float:right; {{#if:{{{right column width|}}}|width:{{{left column width}}}|{{#if:{{{right column width|}}}||width:49%}}}};">
<div style="float:right; {{#if:{{{right column width|}}}|width:{{{left column width}}}|}};"><div style="padding-left:10px;">
{{{right column}}}
{{{right column}}}
</div>
</div></div>
<br style="clear:both;" />
<br style="clear:both;" />
</div>
</div>
Line 30: Line 30:


=== Notes ===
=== 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).
* '''left column width''' and '''right column width''' are optional. If neither is specified, the columns will adjust to their content. This value can be in percent (eg. 50%), pixels (eg. 200px), or any other CSS-compliant length.


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

Revision as of 21:53, 27 September 2011


{{{left column}}}

{{{right column}}}



How to use

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

test {{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, the columns will adjust to their content. This value can be in percent (eg. 50%), pixels (eg. 200px), or any other CSS-compliant length.