Hi,
I have created a form with a submit button but I would like to replace the Submit button with my own image. Is this possible? If so, how can I do this?
Luther
I have created a form with a submit button but I would like to replace the Submit button with my own image. Is this possible? If so, how can I do this?
Luther
Yes, use css
HTML
CSS
HTML
<div class="myButton"><input type="submit" name="" value=""></div>
CSS
div.myButton input {
background:url(/images/Btn.PNG) no-repeat;
cursor:pointer;
width: 200px;
height: 100px;
border: none;
}
This topic is locked and no more replies can be posted.