I have a big problem. I use bootstrap ver 3.1.1 in my website, and i want disable responsive of bootstrap in this project, but i can't!
This is html:
<div class="container">
<div class="row">
<div class="col-md-9" style="background-color: yellow;">col left</div>
<div class="col-md-3" style="background-color: pink;">col right</div>
</div>
</div>
This is my custom css:
body {
background-color:#fdfdfd !important;
font-family:Arial, Tahoma !important;
min-width: 1024px !important;
}
.container {
max-width: none !important;
width:1024px !important;
background-color:#fff !important;
}
remove meta tag in header page
<meta name="viewport" content="width=device-width, initial-scale=1">
but when i test my web in firefox, chrome... element div 'container' is fixed size when i resize width of brower. But navbar-menu, gird system is responsive. Why? Please help me.
Sorry because my english is not good!
Thank you very much!