I am using kube css framework to develop the front end of my site, but I want to disable the responsive feature that this framework is providing by default. I want to do that in few simple lines (css
or js
). maybe fixing the width of the body and scrolling the inner divs?
any hints?
EDIT
one possible simple solution is to provide this css code
body{
width:1024px !important;
overflow-x: scroll !important;
}
but I want everything to be centered.