nffdiogosilva
nffdiogosilva

Reputation: 867

Where is bootstrap-responsive.css?

I know that by default the bootstrap doesn't come with the file, but after I customized (I've selected all the responsive features!) I still can't see the file. At the docs, it says that I should do this on head tag:

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">

But the truth is that I don't even have the folder assets. What I do have is:

\bootstrap
    \img
    \css
    \js

Can anyone help me?

Upvotes: 59

Views: 98387

Answers (6)

Ashik Ali
Ashik Ali

Reputation: 1

https://ci.apache.org/projects/openejb/examples-generated/moviefun/src/main/webapp/assets/css/bootstrap-responsive.min.css.html
  1. make a file name bootstrap-reponsive.css on your CSS folder
  2. copy all these to that file.
  3. give link to that file on your HTML code

Upvotes: 0

trante
trante

Reputation: 34006

Since Bootstrap 3 you don't need responsive.css anymore. Because it is inside default bootstrap.css.

Related: https://stackoverflow.com/a/16379181/429938

Upvotes: 117

Vimo Designs
Vimo Designs

Reputation: 21

They moved it to a different directory. Try this:

<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet">

Upvotes: 1

scabbiaza
scabbiaza

Reputation: 2022

look here http://twitter.github.io/bootstrap/scaffolding.html#responsive

Bootstrap doesn't include responsive features by default at this time as not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it as needed.

So if you need bootstrap-responsive.css, you should download it from bootstrap-source, from here for example: http://twitter.github.io/bootstrap/index.html

Upvotes: 5

Seung-hyup Lee
Seung-hyup Lee

Reputation: 397

Download http://twitter.github.com/bootstrap/assets/bootstrap.zip and uncompress.

\bootstrap\css\bootstrap-responsive.css

\bootstrap\css\bootstrap-responsive.min.css

Upvotes: 21

ruccv
ruccv

Reputation: 41

Or you can use directly as below:

<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">

Upvotes: 4

Related Questions