Hi I have this code (just test code) and would like to place a product image above the button, but anything I try doesn't seem to work. Please can anyone help? Thanks Dee <form action="http://ww#.aitsafe.com/cf/add.cfm" method="post"> <input name="userid" type="hidden" value="12345678" /> <input name="product" type="hidden" value="Oceanmaster jacket"> <input name="price" type="hidden" value="159"> <input name="return" type="hidden" value="www.mals-e.com/support/help2.php"> <input type="submit" value="Buy Now!"> </form>
What's wrong with: <img src="image.jpg" /> <form action="http://ww#.aitsafe.com/cf/add.cfm" method="post"> <input name="userid" type="hidden" value="12345678" /> <input name="product" type="hidden" value="Oceanmaster jacket"> <input name="price" type="hidden" value="159"> <input name="return" type="hidden" value="www.mals-e.com/support/help2.php"> <input type="submit" value="Buy Now!"> </form> Code (markup):
above the button so that <img src="image.jpg" /> should be before <input type="submit" value="Buy Now!"> and with a <br /> after also, i can see that you have a "#" in the action part of the form so that could be the problem too
Use this code : <form action="http://www.aitsafe.com/cf/add.cfm" method="post"> <input name="userid" type="hidden" value="12345678" /> <input name="product" type="hidden" value="Oceanmaster jacket"> <input name="price" type="hidden" value="159"> <input name="return" type="hidden" value="www.mals-e.com/support/help2.php"> <br /><img src="image.jpg" alt="Image" /><br /> <input type="submit" value="Buy Now!"> </form> Code (markup):