I'm using Slick Carousel with Zurb Foundation and the recommended use it to have the css, js in its own folder in the root directory and when i set my project up like this i can get it to work perfectly.
But I'd like to add it into my current project file structure, like so:
- Project Root
- Fonts
- slick.eot
- slick.svg
- slick.ttf
- slick.woff
- Images
- Loading.gif
- JS
- slick.min.js
- SCSS
- slick.scss
- Stylesheets
- slick.css
- Fonts
I thought all I'd need to do is change the default variables given in the scss file:
$slick-font-path: "./fonts/" !default;
$slick-loader-path: "./" !default;
But nothing I try has worked, the compiled css has urls like this:
background: #fff url('/images/ajax-loader.gif') center center no-repeat;