I am using twitter bootstrap and I have some code like this:
<%= link_to "Create", new_something_path %>
which renders the text in a light blue color, highlighting it as a link.
How would I reference that element to change it via css?
Give the link a class name
<%= link_to 'Create', new_something_path , :class => "newsomething"%>
add the following to your CSS.SCSS file
a.newsomething{
color: #000;
&:hover {
color: #000;
}
}