PDA

View Full Version : Adjusting store width


muraduk
03-01-09, 19:12
Can anyone point me in the direction of how to adjust the width of the store to say approx 800 pixels wide..

Thanks..

Aspiring Affiliate
03-01-09, 23:00
Hi,

Go to your template's css and on the sw_frame, add 800 or your desired pixels to your frame's width.

If you're using the default template you should see something like this;

#sw_frame {
margin-right:auto;
margin-left:auto;
padding:0px;
text-align:left;
}

then change it to;

#sw_frame {
width:800px;
margin-right:auto;
margin-left:auto;
padding:0px;
text-align:left;
}

Hope this helps!