I've downloaded the project files from the Treehouse Rails Developer course. Rails Development adventure, Stage 4 : Using AJAX. I managed to get the app working but my bootstrap styling does not display.
The bootstrap files are all in their respective folders.
Here's some code from my application.css :
*= require_self
*= require_tree
body {
padding-top: 40px;
}
.alert {
margin-top: 10px;
}
My application.html.erb does contain the stylesheet link tag :
<%= stylesheet_link_tag "application", :media => "all" %>
I'm running rails v 3.2.6 on OSX Mavericks
Thanks ahead of time for the assistance