Announcement

Collapse
No announcement yet.

Use a standard 'grey' button in a <a href> link?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Use a standard 'grey' button in a <a href> link?

    I want to put a button on the product page to take the user up a section, and it needs to sit next to the 'add to cart' button which is a standard grey windows style button
    Code:
    <INPUT TYPE="IMAGE" SRC="buy-button.gif" NAME="1193" WIDTH="96" HEIGHT="25" BORDER="0" ALT="Add this item to your shopping basket">
    I obviously want my 'up' button to match, so what code do I use to get a button like that...?
    John

    #2
    IMAGE buttons are used to submit a form so you can't easily use one as you want.

    However why not simply do

    <a href="mylink.http"><img src="mybutton.gif" width=123 height=45 border=0 /></a>

    and make mybutton.gif by editing your existing graphic (in photoshop or whatever) and replacing the text.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X