We now have a full layout with header, navigation, content and footer. HTML: <div id="header">
<div id="title">Site Name</div>
</div>
<div id="nav"> <a xhref="http://skeletorscorpse.com/joomla/#">Link</a> <a xhref="http://skeletorscorpse.com/joomla/#">Link</a> <a xhref="http://skeletorscorpse.com/joomla/#">Link</a> <a xhref="http://skeletorscorpse.com/joomla/#">Link</a> <a xhref="http://skeletorscorpse.com/joomla/#">Link</a> </div>
<div id="content">
<div id="maincontent">
<h1>Content Header</h1>
<p> Content Section of page. </p>
<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent diam magna, ultrices ac, accumsan eget, elementum id, sapien. Proin ligula mi, molestie sit amet, dapibus id, tincidunt a, odio. Mauris sit amet augue vel eros molestie adipiscing. Ut varius luctus velit. Cras sit amet eros a purus posuere cursus. Phasellus vel urna. Sed ac nisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse potenti. Proin vitae ligula sit amet ligula porta mollis. Morbi dui augue, luctus sit amet, dictum ut, euismod eu, risus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Aenean in nibh at erat elementum auctor. Nunc gravida dignissim erat. Curabitur aliquet turpis sit amet justo. Ut ac risus. Sed fermentum massa nec tortor. </p>
</div>
<div id="sidecontent">
<h1>Latest News</h1> Here is the latest news from SiteName
<p> <a xhref="http://skeletorscorpse.com/joomla/#">Link</a> Posted by JK on 23/06/05 </p>
<p> <a xhref="http://skeletorscorpse.com/joomla/#">Link</a> Posted by JK on 20/06/05 </p>
</div>
</div>
<div id="footer">
<div id="copyrightdesign"> Copyright Site Name </div>
<div id="footercontact"> <a xhref="http://skeletorscorpse.com/joomla/#">Contact</a> </div>
</div> CSS: * { padding:0; margin:0; } body { color: #666666; background-color:#ffffff; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:0.83em; margin:20px auto; width:760px; }
h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, ul, ol, dl, fieldset, address { margin:1em 0;}
h1 {font-size:1.67em;}
h2 {font-size:1.39em;}
h3 {font-size:1.2em;}
h4 {font-size:1em;}
li, dd { margin-left:5%; }
fieldset { padding: .5em; } a { color: #FF0000; background-color: #FFFFFF; font-weight: bold; text-decoration: none; } a:hover { color: #CC0000; background-color: #FFFFFF; font-weight: bold; text-decoration: underline; } #header { background-color: #FFFFFF; width:760px; clear:both; } #title { color:#CC0000; background-color:#FFFFFF; font-size:3em; font-weight:bold; padding:0px 0px 0px 0px; float:left; } #nav { padding:2px 0px 2px 0px; margin:0 0 5px 0; width:760px; clear:both; } #nav a { color: #ffffff; background-color:#CC0000; font-weight:bold; text-decoration:none; padding:4px 20px 4px 20px; } #nav a:hover { background-color:#DD0000; text-decoration:none; } #content { border-top:1px solid #CC0000; width:760px; clear:both; } #maincontent { font-size:1.0em; padding:0px 5px 0px 0px; width:550px; border-right:1px solid #CC0000; float:left; } #sidecontent { font-size:0.83em; padding:5px 0px 0px 0px; width:195px; float:right; } #footer { color: #FFFFFF; background-color:#CC0000; font-size:80%; line-height:1.5em; width: 760px; clear:both; } #footer a { color: #FFFFFF; background-color: #CC0000; text-decoration: none; font-weight: bold; } #footer a:hover { text-decoration: underline; } #copyrightdesign { color:#FFFFFF; background-color:#CC0000; padding:5px 0px 5px 20px; width: 580px; float:left; } #footercontact { color:#FFFFFF; background-color:#CC0000; padding:5px 0px 5px 50px; width:110px; float:right; } As you can see I have added some additional CSS for the formatting of the text etc. Finished site can be found here |