Reputation: 12599
Is it possible to stop the layout from expanding beyond 940px?
I have certain elements that mess up beyond 940px. I still need the layout to be responsive for mobile, just anything device bigger than 940px doesn't need bigger items.
Upvotes: 0
Views: 327
Reputation: 751
would need to see your code, however setting max-width:940px;
to the element will do it.
This will prevent it from expanding past 940 but still be responsive for mobile.
Upvotes: 0