Reputation: 853
I like Bootstrap 3 very much, but most of the time I don't want to create an extra design for tablet devices. So I only need the screen-xs and screen-lg option. I don't need screen-sm and screen-md. When a user visits my site with a tablet, I want to display the screen-lg site. It should just resize to his device (like any other traditional non-responsive site). Example is: http://www.egg.de
Is that possible somehow?
Upvotes: 0
Views: 151
Reputation: 15740
If you use only col-sm-*
columns instead of col-md-*
and col-lg-*
, your design will only adjust on at 768px and above (or below, if you prefer to think of it as desktop-first).
Upvotes: 2