Using bootstrap 3 to design my responsive website, I\'m having trouble getting the layout to work below a desktop width resolution of 1366px v 786px. When the layout is decr
The row-fluid and container-fluid are deprecated from BS 3, so now you just use container and row
You can use the new "small" grid classes (col-sm-*) to prevent the layout from stacking on smaller display..
Demo: http://bootply.com/71450
If you want it to never stack, even on the smallest displays, use the tiny col-xs-* grid classes.