Hi
I am looking to change the look and feel of the Buttons by applying the JQUERY UI script.
So far I have managed to change the Product page button addtocart
template.ascx
HTML Code:
<link type="text/css" href="css/smoothness/jquery-ui-1.8.1.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js_lib/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js_lib/jquery-ui-1.8.1.custom.min.js"></script>
<script type="text/javascript">
$(function() {
$("button, input:button, a", ".demo").button();
});
</script>
Source code
HTML Code:
tmpS.Append("<div class=\"demo\">");
tmpS.Append("<input type=\"button\" value = AGGIUNGI onClick=\"document." ....
tmpS.Append("</div>");
but I am finding some problems on changing the buttons in the signin.aspx page where the button is created in another way.
HTML Code:
<asp:Button ID="LoginButton" type="button" OnClick="LoginButton_Click" runat="server" Text="login" ValidationGroup="Group1">
</asp:Button>
I wonder if someone has developed this in the past or has an idea on how make it work.
Thank you 
I am using version 8