Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm confused on where to put my new css file for ActiveAdmin to use. I have a folder called public/admin/active_admin.css and here https://github.com/gregbell/active_admin/issues/261, it says to put it in active_admin.rb but this doesn't exist in my application. Where does it go?

share|improve this question

1 Answer

up vote 1 down vote accepted

All you need to add is

# active_admin.rb
config.register_stylesheet 'active_admin_custom.css'

in the file config/application.rb (or an environment-specific config file) then the file /public/stylesheets/active_admin_custom.css

or you can create a new file:

config/initializers/active_admin.rb and put that line of code in there.

share|improve this answer
Ah that's right I forgot about the initializer folder. Thank you. – LearningRoR Dec 17 '11 at 16:12
No problem. There are many ways to do the same thing in rails. – CodeJoust Dec 17 '11 at 16:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.