I know that stackoverflow is filled with these question, but the solutions I find doesn't fix my problem, first of all it appears that all responses assume that you have installed some gem to use bootstrap (like bootstrap-sass) when the only thing I did was download it and put the content in the appropriate folders as explained here.
So half of the answer are to put these commands:
@import "bootstrap-sprockets"
@import "bootstrap"
In my scss or sass file (which I have not).
and the other half say that I have to change this:
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
for this:
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../assets/glyphicons-halflings-regular.eot');
src: url('../assets/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
Wich didn't work for me...
So, anyone have another solution?