Quote Originally Posted by judyinspokane View Post
It is http://www.cutlersupply.com/cart

The cart is not opening either and I'm not sure if that's related but it was working fine before I did this change.

The problem was the logo was 1000px and the site was expanding on beyond that. So I made the fix you talked about and changed it from 100% to 700px and it worked great at fixing the width of the site. I also changed this section in the stylesheet.css from 1300 px to 1000 px:

width:1000px; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
max-width:1000px; /* prevents the main content from getting wider than 1300px in sites other than IE */
min-width:1000px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */.
First of all, that "change #navMain to 700px" reply was for a totally different issue than what you are having.

Your problem is that you changed the width of the body to 1000px. Change it back to width:auto.

html>body {
width: 1000px;
}

change it, and all will be well.

The cart issue is not related. If you changed any files related to the shopping cart (even language files) re-upload the originals, you've got something messed up somewhere.