Yes I can. Basically your template contains a header and two columns side by side under your header. I think you know this much, but for your header you need to have a div tag. Since we want it to show up at the top of the screen we'll type it first.
CODE
<div id="header">
</div>
For the Css you only need to really have a couple attributes. The height, the background color, and the color of the text.
CODE
#header {
height:60px;
background:#0e0e0e;
color: #fff;
}
Okay that's the easy part and I think you already know how to do that by looking at your code.
Now comes the colums, this is the part that can get a little tricky.
First we'll do the left side. In you're page it is a nav bar.
CODE
<div id="menu" align="right">
<div id="l-col" align="center">
<h4 align="center">Menu or what ever here</h4>
<br />
Link maybe here
<br />
and here
<br />
and here
<br />
and again here
</div>
the "menu" div specifies the size of the menu. The "lclm" div specifies the position.
The css looks something like this.
CODE
#menu{
position:relative;
background: #dcdcdc;
color: #fff;
width:650px;
padding:0;
}
#l-col {
float:left;
background:#dcdcdc;
color: #fff;
width:145px;
}
for the menu we have the position and and width basically. This is going to specify the width of the menu section the height isn't necessary because you want to extend if you add more links.
The "lcol" shows the position of the text. we want it to float left.
The "cont" section is where your content goes, remember to use the <h1> tags for headers and the <p> for paragraphs along with <br/> for line breaks.
CODE
<div id="cont">
<br />
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Pellentesque luctus, turpis vitae facilisis blandit, nisl tellus malesuada risus, ut fringilla nunc sapien et diam. Pellentesque tellus dui, pellentesque eget, semper ut, eleifend a, erat. Integer velit. Vivamus sodales orci eget leo tincidunt facilisis. Donec augue nisl, imperdiet vel, pulvinar pulvinar, elementum sed, purus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque est. Ut semper fermentum pede. Sed nulla. Morbi vehicula suscipit lectus. Morbi et erat. Nulla vitae turpis. Vestibulum mauris arcu, scelerisque sit amet, consequat ut, luctus et, risus. Aenean tincidunt luctus nunc. Praesent blandit.</p>
<br />
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Pellentesque luctus, turpis vitae facilisis blandit, nisl tellus malesuada risus, ut fringilla nunc sapien et diam. Pellentesque tellus dui, pellentesque eget, semper ut, eleifend a, erat. Integer velit. Vivamus sodales orci eget leo tincidunt facilisis. Donec augue nisl, imperdiet vel, pulvinar pulvinar, elementum sed, purus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque est. Ut semper fermentum pede. Sed nulla. Morbi vehicula suscipit lectus. Morbi et erat. Nulla vitae turpis. Vestibulum mauris arcu, scelerisque sit amet, consequat ut, luctus et, risus. Aenean tincidunt luctus nunc. Praesent blandit.</p>
</div>
Css same concept as before.
CODE
#cont {
width:495px;
background:#ffffff;
color: #000;
border:solid #000000;
border-width:0 0 0 1px;
text-align:left;
}
Hope that helps.
Even more I hope I made sense...lol its late here...lol.
Good luck,
Kevin