InventoryTrackers wrote: > Has anybody built .css around any of these properties to make this > link look like the same graphic button created by <%= form.submit > "Save" %>?
That button doesn't even look the same between different browsers. Your only hope is to use a button to go back instead of a link. CSS isn't going to cut it. You can use a button with JavaScript to make it act like a link to back. Well actually, I can think of another way, but it's just the opposite. You could use a link with JavaScript to replace your submit button, where the JavaScript submits the form. Then you can create CSS to make the two links look like buttons. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

