Top Questions
Top Questions

Reputation: 1852

Bootstrap disable view of phone/tablet

experts.

I´ve found no solution for this Problem. I used Bootstrap to Build up a template for me, but here´s the Problem:

I don´t want the site to get scaled (views for tablet or mobile)...

That means if the width of the screen is under i think 980px* it scales down.

--> Short: How to disable the other views/scale down (phone/tablet) in Twitter Bootstrap?

thanks for reading/helping.

Upvotes: 2

Views: 10977

Answers (1)

RaphaelDDL
RaphaelDDL

Reputation: 4480

Don't include bootstrap-responsive.css (or it's minified version) in your header, just bootstrap.css (or it's minified version).

A.k.a Locate these in your <head> and remove:

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link href="path/to/css/bootstrap-responsive.css" rel="stylesheet">

The @media queries that make the responsive layout are located in this css.

For more info, read http://twitter.github.io/bootstrap/scaffolding.html#responsive

Upvotes: 4

Related Questions