er zijn 2 manieren: tabel of divs,
dmv een tabel: de code van JohanG.
Als er spatie tussen 2 kolommen moeten komen:
Code: Selecteer alles
<table width="100%" border="0" cellspacing="0" cellpadding="4" id="forum_table">
<tr>
<td width="50px" align="center" valign="top">
{ SIDEBAR (OPMAAK MOET NOG, DIE KAN JE UIT DIE FOUTE EDITS HALEN :P) }
</td>
<td width="10px"> </td>
<td valign="top" align="left" width="80%"">
of door middel van divs:
overall_header.html
vervangen met:
Code: Selecteer alles
<a name="start_here"></a>
<div id="container">
<div id="page-body">
overall_footer.html
vervangen met:
Code: Selecteer alles
</div>
<div id="left-menu">
<!-- inhoud -->
</div>
<div id="page-footer">
theme/common.css:
Code: Selecteer alles
#page-body {
margin-left:4px;
margin-right: 204px;
clear: both;
}
vervangen met:
Code: Selecteer alles
#page-body {
margin-left:4px;
margin-right: 204px;
clear: both;
}
#left-menu{
float:left;
width:200px;
}
#container{
float:right;
width:100%;
margin-right:-200px;
}