I've searched all over the web and tried every remedy posted to no avail; most of the answers don't fit my situation anyway.
The Code:
<form method = "post" action = "index.php">
<input type = image alt = Submit alt = "" id = "zy" src = "Images/Button_Close_1.png" onmouseover = "this.style.cursor = 'hand';
SetImage('zy','Images/Button_Close_2.png');
return false;" onmouseout = "SetImage('zy','Images/Button_Close_1.png');
return false;" border = "0" height = "37" width = "183" />
</form>
SetImage
is a javascript function which takes the first image and replaces it with the second, giving you a custom "hover" button.
There's probably an easier way to do it with CSS, but I've been using this code for a while.
The Issue: In the latest versions of Chrome (thank you, Google), these images all have an ugly blue border around them when you click them. I can't seem to get rid of it!
I need my custom images for my forms, but I really want to get rid of this line. Any ideas?