When customizing your theme at BindTuning, one of your selections was the base width of the theme for desktop devices.
You can change this value by proceeding as follows:
Edit your theme's .css file (location depends on the platform for which you downloaded the theme)
Paste the following code at the bottom of the file:
@media (min-width: 1200px) {
.container { width: 95% !important; }
}
.IE7 .container,
.IE8 .container { width:95% !important; }This CSS targets devices with a screen width of 1200 pixels or more, setting the primary content container to 95% of the available width (or a fixed pixel value if you change '95%' to '1200px', etc.).
Any manual changes applied directly to the theme's core CSS file will be overwritten if you update your BindTuning theme. Always keep a record of your custom styles to reapply them after an update.