As I work on developing my website, I am utilizing Twitter's bootstrap grid system. Despite my efforts, I have been unable to find a solution for fixing the width of the site. My goal is to lock the size in place so that it remains constant regardless of window resizing or smaller screen devices like iPhones. Ideally, I want the browser to display only a portion of the website rather than adjusting the entire layout, which can disrupt the text formatting. Below is the CSS code I have implemented thus far, though defining a min-width has not yielded the desired results...
@media (min-width: 1200px) {
.container{
max-width: 960px;
min-width: 960px;
width: auto !important;
width: 960;
}
}
.container {
padding-left: auto;
padding-right: auto;
padding-bottom: 0px;
}
Upon reviewing the documentation, I have discovered that Bootstrap is geared towards responsive web design. This leads me to question if it is possible to achieve a fixed website layout using Bootstrap?