I'm trying to insert a text and a tiny image of an airplane to a submit button. Unfortunately, the text overlap on the image and I do not know how to align it. how can I "move" the text to the right of the button? There is a better way to do it? Thanks.
input[type="submit"] {
width: 230px;
height: 40px;
border: none;
background: url(../Images/Plane.png) #ff9900 no-repeat right;
color: #fff;
cursor: pointer;
}
and this is the HTML
<input type="submit" value="SEND" id="submitForm">