I need assistance with aligning text and a small airplane image on a submit button. Currently, the text is overlapping the image and I am unsure how to fix this issue. How can I adjust the position of the text to display to the right of the button? Is there a more efficient way to achieve this? Thank you.
input[type="submit"] {
width: 230px;
height: 40px;
border: none;
background: url(../Images/Plane.png) #ff9900 no-repeat right;
color: #fff;
cursor: pointer;
}
Here is the HTML code:
<input type="submit" value="SEND" id="submitForm">