Stylesheet

index.html.erb: <td colspan=6><span class="list-title">Add User</span></td>

user.css: #user-list .list-title {   color: #244;   font-weight: bold;   font-size: larger; }

users.html.erb: <%= stylesheet_link_tag 'scaffold', 'user' %>

My styles don't seem to be applying, suggestions?

Thanks!

Justin To wrote:

index.html.erb: <td colspan=6><span class="list-title">Add User</span></td>

user.css: #user-list .list-title {   color: #244;   font-weight: bold;   font-size: larger; }

users.html.erb: <%= stylesheet_link_tag 'scaffold', 'user' %>

My styles don't seem to be applying, suggestions?

Thanks!

What happens if you say:

<%= stylesheet_link_tag 'user' %>

<%= stylesheet_link_tag 'scaffold' %>

?