I tried to create buttons and insert my own images instead of the standard button images. However, the gray border from the standard buttons still remains, showing on the ou
This seems to work for me perfectly.
button:focus { outline: none; }
Add this as css,
button[type=submit]{border:none;}
$(".myButtonClass").css(["border:none; background-color:white; padding:0"]);
input[type="button"] { border: none; outline:none; }