I'm trying to add an e-mail form, using <form>, to one of my fragment pages but I can't get it to work - are there any issues in using <from> with Actinic?
FORMS withing Fragments should be OK - assuming that each Product has it's own Add to Cart button.
FORMS within Products will be problematic as each Product is within an Actinic Generated FORM and you cannot nest FORMs.
If you use the Single Add to Cart per page then the entire product list (including any Fragments) is within a FORM making it very difficult for you to place your own one.
You've got nested forms there. Actinic seems to be putting a form around all these fragments (I assume they're fragments - is this a Brochure or Product Page?).
The easiest (and slightly kludgy way) to fix this is to make sure your form is at the bottom of the page and start your code with </form>. This will end the Actinic form and leave a spurious </form> tag at the bottom of the page which browsers will ignore.
You could also try doing as above but adding leaving out your own </form> tag and let the final Actinic one replace it.
Comment