Hi everyone,
I'm currently in the process of creating a three row layout, nothing too difficult so far. The problem arises because I need each row to be 100% width to fill any resolution with a color and I also need the divs inside each row to be 1024/960px and centered.
Something along these lines:
<div class="top"> <!--This needs to be 100%-->
<div class="logo-holder"></div> <!--This needs to be 1024px centered-->
<div class="menu-holder"></div> <!--This needs to be 1024px centered-->
</div>
<div class="main"> <!--This needs to be 100%-->
<div class="rotating-banner"></div> <!--This needs to be 1024px centered-->
<div class="promo-holder"> <!--This needs to be 1024px centered-->
<div class="promo-banner"></div>
<div class="games-list"></div>
</div>
</div>
<div class="footer"> <!--This needs to be 100%-->
<div class="footer-holder"></div> <!--This needs to be 1024px centered-->
</div>
Tnks in advance, Tonio