Displaying 1 result from an estimated 1 matches for "main_admin".
Did you mean:
mail_admin
2005 Jul 17
0
RE: link_to and CSS
...: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
Subject: [Rails] link_to and CSS
I am a bit confused about how to invoke CSS from within a link_to
command.
I have part of it working... My link_to command looks like this:
<%= link_to "MAIN MENU", { :controller => "/main_admin", :action =>
"menu" }, {:class => ''linkCommand''} %>
and the excerpt from my stylesheet looks like this:
.linkCommand {
font-family: Verdana, sans-serif;
font-weight: 900;
font-size: 9pt;
text-decoration: none;
}
This all works fine. However, I can...