can any body tell me how can I make an image a button. For example, I want to show back and next links within beautiful images??? Please Help
In the HTML code for your button, just add link to the image you want to use: <INPUT TYPE="image" SRC="images/myimage.gif" HEIGHT="30" WIDTH="173" BORDER="0" ALT="Submit Form"> That assumes your image is named myimage.gif and you keep it in an images folder of the directory your html page code is stored. Otherwise subsitite the full url for the image You can f course make the button / image any size you like
http://blog.seoranksmart.com Its my blog, please see at bottom, there is next and previous link. I want to make that link an image.
go to the html section of your blog or page post. Use the upload image button at the top with your cursor placed where you want the image to go. The first set of html < a href= ...>will be your upload image information. Replace that with the url that you want the button to direct people too. would give you an example but can't put html in my posts yet.
Depends whether it's a form or a standard link; Form - <input type="image" src="link_here" /> HTML - <a href="link_here_to_go_to"><img src="link_image" /></a>