</table> followed by </td> is valid if the full code is
<td>
<table>
</table>
</td>
in other words a table fully nested in a cell of another table.
Actinic have apparently built their code with some of it in templates that we can add to, and some of it hard coded into the program to prevent reverse engineering. Once we start taking the templates apart, we are left with the hard coded bits to resolve and that will keep tripping you up.
Each template is expected to follow/be wrapped within/be followed by another template. Code id often split between different templates which the program combines into one page.
The opening tag for the table cell that is closed in your 17th line is obviously meant to be somewhere back inside another table back in the original act_primary which you are not using.......
<td>
<table>
</table>
</td>
in other words a table fully nested in a cell of another table.
Actinic have apparently built their code with some of it in templates that we can add to, and some of it hard coded into the program to prevent reverse engineering. Once we start taking the templates apart, we are left with the hard coded bits to resolve and that will keep tripping you up.
Each template is expected to follow/be wrapped within/be followed by another template. Code id often split between different templates which the program combines into one page.
The opening tag for the table cell that is closed in your 17th line is obviously meant to be somewhere back inside another table back in the original act_primary which you are not using.......
Comment