I have the below line in the user dropdown menu in the header of my app.
<%= link_to "profile (#{user.notifications.count})", current_user %>
This should show profile (3)
if the user has three notifications. I want to color the profile
a different color from the (3)
.
Is the best way to do this to give the two different parts different classes? If so, how can I go about doing that?