Page 1 of 1

Shopping Cart Layout - Background Box

PostPosted: Mon Sep 19, 2011 1:18 pm
by Davin
Hi,
I am stuck! I created the store on fatcow and I am having a heck of time trying to fix the layout of the cart itself. Heres the link:
http://shopsite.fatcow.com/ss10.0/sc/order.cgi?storeid=*1ed1f2b4120aa01935719467929fe4a090&function=show
How do I get the white background box to be the same width as the rest of the page?
I used cropcircles then created my own template from that.

Thanks,
Davin

Re: Shopping Cart Layout - Background Box

PostPosted: Mon Sep 19, 2011 7:37 pm
by Jim
The problem is in the line <div id="rightside-noleft">

looking at the style sheet here is the style definition:
#rightside-noleft {
min-height: 300px;
width: 1000px;
margin: 0px;
background-color: #FFFFFF;
padding: 0 20px 10px 20px;
}

So there is 20 px padding added to both the right and the left side of the div which shifts it 40 px to the right. That 40px is how much it is hanging over the right side. So if you change the padding line to "padding: 0px 0px 10px 0px;" it should fix the problem.