I have some tables set up with payment buttons in them. Everytime I edit the page, the CMS inserts in my forms and it will break my tables apart.
Example:
my code -
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input name="cmd" type="hidden" value="_s-xclick" /> <input name="hosted_button_id" type="hidden" value="HYCMDSMZT4VCJ" /> <input src="http://www.alphaomyoga.com/images/200-int-cost_07.gif" type="image" /></form>
Code after I edit anything on the page-
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input name="cmd" type="hidden" value="_s-xclick" /> <input name="hosted_button_id" type="hidden" value="HYCMDSMZT4VCJ" /> <input src="http://www.alphaomyoga.com/images/200-int-cost_07.gif" type="image" /> </form>
Notice that right before the the </form> tag, a non breakable sapce has been inserted. This happens on each of my buttons on that page. Does this happen for a reason? Everytime my client goes in to edit the page, it breaks up the tables, even though they dont edit anything. All they have to do is open the editor and save it and it will insert the
This only happens in the form tags. It doesn't insert it anywhere else on the page.
Is it supose to do this??