Good Afternoon All,
I'm having trouble integrating this template into my rails application. I've changes all the images and loaded all the files into their relevant areas. However they still have the subdirectories.
Does anyone know of a guide I can walk through which might explain how you do this, especially to include the revolution-slider which has a whole subdirectory of CSS and images.
Template being used:
https://wrapbootstrap.com/theme/pixma-responsive-multipurpose-template-WB0B348C6
Thanks for the help.
Suggesting that you are on Rails > 3 with asset-pipeline on, the process of integration should be trivial like in this Rails guide, look for 2.2.2 - using index files):
app/assets/javascripts|stylesheets
, for example :app/assets/stylesheets/revolution-slider
index.css
(for stylesheets assets) andindex.js
(for js assets) . It should be inside the library directory and should contain regular directives for including assets , usually*= require_tree .
for styles and//= require_tree .
forjs
.Finally, include your library in your main manifest file
application.css|js
like this:for javascript library
for
css
library.