Hi,
Heres the simple version (no height and no footer):
CSS:
Code:
#contentLayer {
margin-right:149px;
text-align:left;
border-right:1px solid #FFF;
padding-left:2px;
color:#fff;background:#000;
}
#contentLayer p, #contentRight p {margin-top:0}
#contentRight {
float:right;
width:149px;
border-left:1px solid #fff;
position:relative;
}
Html:
Code:
etc........
<div id="menuItemLayer">
<ul>
<li id="current"><a href="">Blog</a></li>
<li><a href="">Fotografier</a></li>
<li><a href="">Jag</a></li>
<li><a href="">Arbeten</a></li>
<li><a href="">Länkar</a></li>
</ul>
</div>
<div id="contentRight">
<p>Right Content</p>
<p>Right Content</p>
<p>Right Content</p>
<p>Right Content</p>
</div>
<div id="contentLayer">
<p>Left content</p>
<p>Left content</p>
<p>Left content</p>
<p>Left content</p>
<p>Left content</p>
<p>Left content</p>
<p>Left content</p>
</div>
</div>
</body>
</html>
If you need a different colour for the right column you may need to do that with a background repeating gif on the right side of the container.
Paul
Bookmarks