Hi,
This is the “img” class for anchor element inside my stylesheet.
A.img:link {
color: #ffffff;
text-decoration: none;
}
A.img:visited {
color: #ffffff;
text-decoration: none;
}
I can easily apply this tag inside my html document as follows:-
< a href=“goodbye.html” class=“img”>
Now I want to apply this stylesheet class (img) to following link_to tag
of rHtml. How to this??
<%= link_to “GoodBye!”, :action => “goodbye” %>
===
Please help me .
Thanx in advance.
Prash