hi,
i was wondering if someone had to tackle the same issue in v 1.3.1.
i am editing template for product page mostly to match the rest of my site. i turned off both side columns. i want the width of the body to reflect the rest of my site which is at about 80% of the window aligning LEFT.

When I edit body id in css
body {
margin: 0;
width: 100%;
font-family: arial, sans-serif;
font-size: 62.5%;
color: #000000;
background-color: #ffffff;
}

down to 80%, the text throughout shrinks to look ugly. Adjusting the font size up doesn't produce nice looking effects (especially on the css buttons).

If instead I edit

#mainWrapper {
background-color: #ffffff;
text-align: left;
width: 100%;
vertical-align: top;
}

down to 80%, all the information including the header et al is centered CENTER.

I would like to be able to position it LEFT to reflect the rest of my site layout. Thank you in advance for any advice.