Quote Originally Posted by graper
you have three stylessheets linked to the page. Styleshee.css, stylesheet_new.css and stylesheet_original.css. In one of them you have .centershop set with a width. .centershop is associated with the table that is holding all the info, and the table is in #mainwrapper. try removing the width with .centershop or just using one stylesheet if you can.
Ok, I change #mainwrapper section in stylesheet.css to

Code:
#mainWrapper {
	background-color: #ffffff;
	text-align: left;
	vertical-align: top;
	width: 100%;
	}
and .centershop section in stylesheet_original.css to

Code:
.centershop {
	padding: 0px;
	margin: 0px auto;
	/*position: relative;*/
	text-align: left;
	width: 100%;
}
or to

Code:
.centershop {
	padding: 0px;
	margin: 0px auto;
	/*position: relative;*/
	text-align: left;
}
but central column does not take all avalaible space.