In the public folder there is a stylesheet folder.
How can i link to this style sheet from a view?![]()
| SitePoint Sponsor |

In the public folder there is a stylesheet folder.
How can i link to this style sheet from a view?![]()
Just use the following:
This will call stylesheetname.css, just add this in your layout above the head like you would normally when inserting a CSS link.Code:<%= stylesheet_link_tag 'stylesheetname' %>

Thanks![]()
Bookmarks