History: Making columns for wiki content
Preview of version: 20
Introduction
In days gone by, HTML tables were used to lay out web page content, but with the invention of cascading style sheets, divs have replaced tables as the preferred containers of content on a web page. To encourage Tiki site authors to use up-to-date layout methods, here is some syntax that enables easy layout of two, three, or four columns on a wiki page.
Of course Tiki's wiki syntax for tables can still be used where it's appropriate: for tabular data.
wiki syntax:
Cool Web layout method
| |
1990s | HTML tables |
Today | CSS (divs, etc.) |
FANCYTABLE plugin:
Column 1 | Column 2 |
---|---|
Row 1 Column 1 | Row 1 Column 2 |
Row 2 Column 1 | Row 2 Column 2 |
Row 3 Column 1 | Row 3 Column 2 |
But for correct semantic layout of general page content, tables aren't appropriate and should be avoided, which is where this floated box method works well.
Also for L&F custom code
Site admins, these same CSS classes can be used in Look and Feel custom code areas - site header, top bar, center column heading, and bottom bar - if you want to have two or more columns of content in any of those areas.
Procedure
Each place where columns are wanted, add a div with the appropriate class — halffloat, thirdfloat, or quarterfloat, depending on if there are to be two, three, or four columns, and the class clearfix. Clearfix ensures that the background or border will go down around all the floated divs, and that the content of this div won't overlap or be overlapped by the content below it.
If a div is used instead of a module within the halffloat, etc. it needs to have the class box. See example below. Combinations of non-module divs and modules are also ok.
Examples
Two columns
is produced by:
{DIV(class="halffloat clearfix")} {MODULE(module=random_pages)/}{MODULE(module=random_pages)/}{DIV}
Three columns
produced by
{DIV(class="thirdfloat clearfix")} {MODULE(module=random_pages)/}{MODULE(module=random_pages)/}{MODULE(module=random_pages)/}{DIV}
and
Four columns
produced by
{DIV(class="quarterfloat clearfix")}{MODULE(module=random_pages)/}{MODULE(module=random_pages)/}{MODULE(module=random_pages)/}{MODULE(module=random_pages)/}{DIV}
Boxes can have any content, not just a module, like this (Sorry but this part of the demo is temporarily out of order in Tiki 4.0. It is fixed in the code for TIki 4.1. In the meantime, for the non-module columns to display side by side, their div class="box" must have a 'style=float:left !important" rule added inline.) :
produced by:
{DIV(class="halffloat clearfix")}{DIV(class="box")}Lorem Ipsum is slechts een proeftekst uit het drukkerij- en zetterijwezen. . . .{DIV}{DIV(class="box")}Lorem Ipsum é um texto modelo da indústria tipográfica e de impressão. O Lorem Ipsum tem vindo a ser o texto padrão usado por estas indústrias desde o ano de 1500. . . .{DIV}{DIV}
Mix of modules and other divs
produced by
{DIV(class="halffloat clearfix")}{DIV(class="box")}!!Lorem Ipsum Lorem Ipsum is slechts een proeftekst uit het drukkerij- en zetterijwezen. Lorem Ipsum is de standaard proeftekst in deze bedrijfstak sinds de 16e eeuw, toen een onbekende drukker een zethaak met letters nam en ze door elkaar husselde om een font-catalogus te maken.{DIV} {MODULE(module=random_pages)/}{DIV}