Im a swell designer, but im not so great with coding, i know enough to do what i want to do most of the time. :-) but a table less layout looks like ,
CODE
<div id="header"><img src="images/image" /> </div>
<ul id="navigation">
<li>Home</li>
<li> Link </li>
<li> link </li>
</ul>
<div id="container">
<div id="left">
//Content goes here
</div>
<div id="Middle">
//content here
</div>
<div id="right">
//content here
</div>
</div>
Thats basically the HTML,
the CSS would look like
CODE
#header {
background: url(images/bg.jpg) repeat-x;
Text-align: left;
}
ul#navigation {
background: url(images/nav.jpg) repeat-x;
color: #000000;
text-align: center;
padding: 0px 0px 10px 0px;
}
ul#navigaton li {
background: url(images/rollover);
}
I guess you get the idea?