Skip to main content

Adjust BindTuning theme width

BindTuning Team avatar
Written by BindTuning Team
Updated over 4 months ago

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:

  1. Edit your theme's .css file (location depends on the platform for which you downloaded the theme)

  2. 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.

Did this answer your question?