> how do I only apply first to the first item? > > <% @clients.each do |client| %> > <%= link_to client.name, client, :class=> "first" %> > <% end %>
if client == @clients.first .... end Not super efficient though. Why not use CSS? http://www.w3schools.com/CSS/css_pseudo_classes.asp -philip > thanks > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

