I want to use my theme styling for the button in the form, the problem I'm facing is that in my theme CSS, for the image to appear correctly, I have to include the button text within <span>submit</span> for it to display correctly. Otherwise, the button's right border is chopped off.
This is how my CSS looks like for the button styling in the theme:
.button { color:#5c5c5c; text-decoration:none; text-transform:uppercase; font-weight:700; display:block; background:url(../img/bg_button.png) no-repeat 0 0; height:75px; width:290px }
I need one of two possible solutions:
1. How to include the <span> tag into the submit button text
OR
2. How to get the CSS to display properly without the need for the <span> element.
Thx in advance!