Hello, Robert is my name.
I am a junior designer and I am learning as I go, as most people do.
I have used only tables because they seem to render not so differently cross-browser like the div's do.
I have the example below, which shows of the kind of layout I am working with. I tried to make a div based layout like that one, but with little success. I am a total beginner with Divs and the way they are positioned, so please, if you take on this quest, give me some guidelines.
I would also be pleased to be guided into making this layout tableless, I am not trying to make anyone do my work. I am just overwhelmed of the way the divs are positioned.
So here goes, this is what I want to achieve using Doctype and ONLY Divs:
Code:
<html>
<head>
<style>
*, BODY, HTML { margin:0;padding:0;border:0 }
table {border:1px solid black;}
</style>
</head>
<body>
<table cellpadding='0' cellspacing='0' border='0' bgcolor='#e2e3ff' height='100%' width='100%'>
<tr>
<td height='150'>
<!--Header Divisons-->
<table cellpadding='0' cellspacing='0' border='0' height='100%' width='100%'>
<tr>
<td bgcolor='#ffa8b4' width='25%'> <td>
<td bgcolor='#fca8ff' width='50%'> <td>
<td bgcolor='#a8aeff' width='25%' align='right'>
<table bgcolor='#dddddd' width='200' height='50' cellpadding='0' cellspacing='0' border='0'>
<tr><td> </td></tr>
<tr><td> </td></tr>
<tr><td> </td></tr>
</table>
<td>
</tr>
</table>
</td>
<tr>
<td height="50">
<table cellpadding='0' cellspacing='0' border='0' height='100%' width='100%'>
<tr>
<!--Active Button -->
<td bgcolor='#a8fff4'> <td>
<td bgcolor='#55b6a9'> <td>
<td bgcolor='#16665c'> <td>
<!--Inactive Button -->
<td bgcolor='#8feb93'> <td>
<td bgcolor='#339537'> <td>
<td bgcolor='#136317'> <td>
</tr>
</table>
<td>
</tr>
<tr>
<td height='100%' bgcolor='#ffffff'>
<table cellpadding='0' cellspacing='0' border='0' height='100%' width='100%'>
<tr>
<td bgcolor='#d18a64' width='25%'> <td>
<td bgcolor='#d1c364' width='50%'> <td>
<td bgcolor='#73d164' width='25%'> <td>
</tr>
</table>
<td>
</tr>
<tr>
<!--Footer Menu -->
<td height='50'>
<table cellpadding='0' cellspacing='0' border='0' height='100%' width='100%'>
<tr>
<!--Active Button -->
<td bgcolor='#a8fff4'> <td>
<td bgcolor='#55b6a9'> <td>
<td bgcolor='#16665c'> <td>
<!--Inactive Button -->
<td bgcolor='#8feb93'> <td>
<td bgcolor='#339537'> <td>
<td bgcolor='#136317'> <td>
</tr>
</table>
<td>
</tr>
<tr>
<td height='30' align='center' valign='top' bgcolor='#e0b379'>Footer Text<td>
</tr>
</table>
</body>
</html>
I am grateful to you already, for you've read this topic so far
Thanks,
Robert.