Special HTML explanations[]
In ambition not to waste space on this Wiki site, i tried to set the Layout as clear as possible. Im Using 2 HTML Objects which should be explained to any subsequent Editors, cause i didn't find any Wiki Code to generate this Layout.
First thing is,[]
setting parts of the Layout into these "div" Blocks to force 2 columns inside the Page, so we don't lose any Space cause of listings with short contents.
<div style="width: 49%; float: left; margin-left: 2%;">TEXT</div>
Second thing is,[]
after floating "div" Elements with the CSS Property "left", following content can also be floated left on some webbrowsers, if the Block elements don't have equal content lenghts. So i decided to set a kind of "hard break" after the Block Elements. This hart break is an invisible HR with 100% with and the clear: both Attribute, helping not to get the expected effekt after floating the column elements left.
<hr style="visibility: hidden; width: 100%; clear: both;" width="100%" />
Please correct me if i'm wrong. --I3rutus 11:05, 11 January 2007 (EST)