I took 20 minutes and coded you a simple layout that should give you a shove in the right direction. As with all my layouts, this one is fluid.
The CSS is slightly commented. But if you have any questions, just ask.
HTML:
HTML Code:
<div id="header">
<h1>Header Image</h1>
</div><!-- #header -->
<div id="main">
<ul id="navigation">
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
<li><a href="#">Link 5</a></li>
</ul><!-- #navigation -->
<div class="content">
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</p>
</div><!-- .content -->
</div><!-- #main -->
<div id="footer">
<p>Footer Text</p>
</div><!-- #footer -->
CSS:
Code CSS:
#header
{
background: #002FFF url() no-repeat; /* fill in the url to your background image */
width: 100%;
max-width: 1000px; /* take this and the next line out to remove constraints */
margin: auto;
padding: 80px 0 80px; /* make the box bigger by adding 80px padding to the top and bottom */
text-align: center;
color: #fff;
}
#main
{
width: 100%;
max-width: 950px; /* don't allow content to flow past 950px */
margin: auto; /* center #main div */
box-shadow: 0 0 8px #000; /* CSS3 boxshadow (this will only work in select newer browsers, you may want to lookup vendor prefixes) */
}
#navigation
{
background: #ccc;
text-align: center;
margin-top: -18px; /* force navigation up 18px */
}
#navigation li
{
display: inline;
padding: 0 20px;
}
.content
{
padding: 20px;
}
#footer
{
width: 100%;
max-width: 1000px;
margin: auto;
background: #002FFF url() no-repeat; /* again, fill in the url to your background image */
text-align: center;
color: #fff;
padding: 30px 0 30px;
}
Live demo: http://jsfiddle.net/2hEaU/embedded/result/.
Bookmarks