i have just deployed my rails application but the css stylesheet wont appear
I’m calling the stylesheet as follows:
<%= stylesheet_link_tag 'layout' %>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
the obvious one is that the stylesheet exists in your directory at:
Also, if you scaffold’d your models/views etc, make sure you don’t have another layout file with the controller name in:
cause the screws up your css layout rendering if you want to show the application.html.erb(or whatever you called it) layout only.