Hi all,
I'm developing new email template and I'm trying to create modules. When I run the validation, an error comes up about the id being invalid. At first I thought maybe I duplicated the id, but that was not the case. Below is the code for the table any suggestions would be greatly appreciated.
<table border="0" cellpadding="0" width="600" class="mktoModule" id="header" mktoname="Header" align="center">
Thanks
have you tried another ID? that might be reserved.
Josh thank you for replying. I did change the id, but Marketo gave me the same error message.
Hi Jeff,
Modules can only be set for <tr> tags, not tables.
The <tr> needs to belong to a table with mktoContainer class.
You can only have one mktoContainer per template. See Email editor 2.0 is leaving room for a v2.1
-Greg
The module can be a <table> if the container is a <td>
My guess is you have another element with id="header" in the template...
Thank you all for your help, I was able to get it to work based on a combination of all you replies.