Joe Essey
Joe Essey

Reputation: 3527

Prevent Bootstrap from being responsive in certain screen resolutions

My goal is to stop from changing the layout at a given resolution, say 768px wide.

Is there a way to set that across the board in my app?

Upvotes: 0

Views: 549

Answers (1)

Tyler Craft
Tyler Craft

Reputation: 174

You can give your container a min-width of whatever amount you want.

@media all and (min-width: 768px){
    body {
        min-width: 960px;
    }
}

Upvotes: 2

Related Questions