This script will add an image to the background of a button.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<a href="mypage.php"><input type="button" value="My Budget" class="btncustom" id="icon"></a> <style> #icon { background-image: url("images/icon.png") ; background-repeat:no-repeat; background-position:5px 2px; text-align: left; text-indent: 42px; } </style> |