Hi there,
I wonder if anyone can give me a bit of help with an issue I'm having with my buttons. I am going throught my store changing the default button images for new ones I have designed which works fine on say the preview cart page as I simply change the image path:
The problem is I would like to change the buttons throughout the checkout process, but being HTML buttons I can't figure out how to replace them with my own images instead? If I try changing the existing code for say the 'next' button:
for this:
the button just sends me back to the home page. Any pointers as to where I might be going wrong?
Thanks very much for the help.
I wonder if anyone can give me a bit of help with an issue I'm having with my buttons. I am going throught my store changing the default button images for new ones I have designed which works fine on say the preview cart page as I simply change the image path:
Code:
<input type="image" name="ACTION_UPDATE" src="my_update_button.gif" alt="<Actinic:Variable Name="UpdateButton"/>" />
Code:
<input type="submit" name="ACTION" value="<actinic:variable encoding="html" name="NextButton" />" />
Code:
<input type="image" src="my_next_button.gif" name="ACTION" value="<actinic:variable encoding="html" name="NextButton" />" />
Thanks very much for the help.
Comment