I wonder from where is this inline style
<style type="text/css">
. container {width: 970px! important;}
</ style>
and where can I make rewrite of this.
Please post all new support queries in our New Forum.
if (!$responsive) {
$this->addCss('non-responsive'); //no responsive
$nonrespwidth = $this->getParam('non_responsive_width', '970px');
if(preg_match('/^(-?\d*\.?\d+)(px|%|em|rem|pc|ex|in|deg|s|ms|pt|cm|mm|rad|grad|turn)?/', $nonrespwidth, $match)){
$nonrespwidth = $match[1] . (!empty($match[2]) ? $match[2] : 'px');
}
$this->addStyleDeclaration('.container {width: ' . $nonrespwidth . ' !important;}');
}