I am working on a private project for a client updating their CSS. This is built in asp. I am trying to build a submit button that is expandable much like this: http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html
The problem is the link looks like this:
<asp:Button runat="server" ID="SearchButton" CssClass="SearchButton" Text="" CausesValidation="false" OnClick="SearchButton_Click"/>
There are no A tags for me to do what is in the tutorial on the link about. They primarily run in IE 7 and 8 so I need to use images to accommodate this instead of CSS3.
Any insight?
Thanks very much :)
J