Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

bootstrap-responsive.css is not included in the customized bootstrap version?

I went through and customized (at the bootstrap website) the column widths and gutter for a new website I am working on. When I download the zip file from bootstrap it does not come with the bootstrap-responsive.css file. If I try to load in the bootstrap-responsive.css that comes with the standard download it seems like it reverts back to the 12 column layout.

I was looking through the bootstrap.css customized file I downloaded and it looks like it contains some responsive mark-ups but not quite all of it. This made me start thinking that maybe they combine the two .css files during a custom download and the problem is actually with my code? Before I spend hours and hours going through the code with a fine tooth comb I wanted to see if its really just a combined file? Should the download from bootstrap actually be including the two .css files? Or is there something obvious I am missing?

like image 842
Cheech Avatar asked Feb 20 '13 17:02

Cheech


1 Answers

Have you ever checked on github repo . You just don't have to do anything. Download customized Bootsrap on their website, and now its the trickier part they have recently changed its name to bootstrap.css from bootstrap-responsive.css. So don't worry everything is same. Either you can download its uncompressed version or minified version. Link it to your meta tag, to make style sheet persistent, set the rel attribute to "stylesheet" <link href="yourstyle.css" rel="stylesheet">. Some of the browsers wouldn't consider the styles without rel attribute.

like image 171
Akshaya Raghuvanshi Avatar answered Oct 13 '22 06:10

Akshaya Raghuvanshi