In my input submit button, I have included the following code:
<input class="buttons" type="button" onclick="javascript:jQuery(xxxx)" style="font-size: 12px;" value="Invite to Bid">
Additionally, there is a CSS function that adds an elegant "Go" image over the button:
.buttons {
background: url("/images/default/product/go_bt.png") no-repeat scroll 0 0 transparent;
}
Currently, both the image and button graphics are displayed. To hide the value of the button, I've used this CSS code:
input.buttons {
color: transparent;
}
However, despite hiding the value, the input button graphics remain visible. Is there a way to completely remove the input button graphics using the "buttons" class in CSS, so that only the functionality with the "go" image is present?