Reputation:
I have a stylesheet to set the font weight on <p>
and <h2>
tags on a specific page on my site. I would like the rest of the site to use the regular styles. How can I specify a CSS file to only link to one specific page?
Upvotes: 1
Views: 2062
Reputation: 7225
use
stylesheet_link_tag "style"
for that particular view file and put at the top that view file.
and don't require it the application.css
Upvotes: 1