|
You're going to have huge problems with your current method. What you need to do is divide your content areas into different divisons, using a separate <div> tag for header, menu, sidebar, main content and footer. This will allow you to define how each division is layed out. Once you have defined these you can then add a background image for each.
As a rough guide for that sort of layout you'll be needing something like this as your main structure...
<div id="header"></div>
<div id="menu"></div>
<div id="left"></div>
<div id="content"></div>
<div id="footer"></div>
Last edited by blue-dreamer; 02-16-2008 at 09:25 PM..
|