-1

Checked out some links, but it seems that people who answer assume a little bit more than I know.

I'm using Rails 3.2.13 and I need to add some styling to my Views.

I have the assets/stylesheets/trade_page.css. What steps do I have to take, where do I have to reference it, what line do I put inside the View pages to use this styling?

Alexey
  • 3,607
  • 8
  • 34
  • 54
  • 1
    Dupe - http://stackoverflow.com/questions/804961/how-do-i-use-css-with-a-ruby-on-rails-application – Nick R Jun 14 '13 at 20:59
  • You're right, I didn't read far enough into the answers. The solution for my version was a little lower. – Alexey Jun 14 '13 at 21:05

1 Answers1

1

Take a look at the asset pipeline documentation. You will need to require the file within your application.css file (if you are not already requiring the whole tree) and then the most common place is to include the application.css file using a stylesheet__link_tag in the application.html.erb file

Jay Truluck
  • 1,509
  • 10
  • 17