is het mogelijk een vaste paginabreedte in te stellen voor magento?
You can adjust the width in the stylesheet.css of your active theme in the shop, using ftp and your favorite editor, ex:
.col-main {
float: left;
width: 75%;
}
.col-right {
float: right;
width: 25%;
padding-right: 0;
}
Just adjust the percentages to the width you want them to occupy.
You can modifying the width of the columns in the 2-column-left, 2-column-right or 3-columns layouts.