I would like to use PlusStrap framework into my Rails application. As I see it is a Bootstrap which was slightly customized.
I have included css-file in my layout:
<%= stylesheet_link_tag "plusstrap.min.css" %>
But when I look at this CSS file I have found such image refs:
background-image: url("../img/glyphicons-halflings.png");
I have created assets/img folder and put image file into it, but Rails cannot find this images. How can I fix it ?
The correct way to include anything , refferenced by CSS’s url call is :
The Rails framework handles it in a special way….