View Single Post
Old 12-03-2012, 11:08 PM   PM User | #2
aaronhockey_09
Regular Coder

 
Join Date: Dec 2010
Posts: 411
Thanks: 21
Thanked 55 Times in 55 Posts
aaronhockey_09 is an unknown quantity at this point
Well the problem is that you have all the content inside of the "container" div. Which is centered and a specific wdith.

What you need to do is have something like this

Code:
<div class="top">
    <div class="container">
        <div id="cart-summary"></div>
    </div>
</div>
So you make the top div span 100% and have the background colour
Then you have all of the content for that inside of the container div which is centered.

Hope this helps.
aaronhockey_09 is offline   Reply With Quote