Tips for Adobe PageMill or GoLive
Here is how you should paste HTML into Adobe Pagemill to avoid the problem:
- Open your HTML document in PageMill.
- Click in PageMill where you would like the HTML to appear.
- Across the top menu choose "View", then "Source Code".
- Paste the HTML into the window using CTRL-V.
Adobe Pagemill and Adobe GoLive both will combine multiple forms on the same page into a single form, if those forms have the same name.
To avoid this, edit the code the cart provides to include unique names for each button/form:
name="a name"
where "a name" can be any name you wish.
Enter it into the tag:
<form method=post ...>
The end result should look something like:
<form name="a name" method=post ...>
This should correct the problem. |
|
|