I use this template for bootstrap http://bootswatch.com/yeti/, so I have bootstrap.css but I want turn off responsive features completely for web. I need advice - have I do some changes in css file, or in web template only? My web where I solving this problem http://playground.jsreport.net/
The most general way to approach this is you would take the parent element, for instance with yeti, you take .container
and give it a static width and force it with !important
.
The most general way to approach this is to wrap everything in a container and give it a static width.
.not-responsive {
width: 1200px
}
<div class="not-responsive">
[Put everything inside of this element]
</div>