I have 2 modules I want to combine: 1 is custom html with just a table and text, and the other is an existing module that pulls in latest blog posts.
I get the module to work but when I try to get the latest blog post module to go into a specific table cell, it instead just puts it outside of it. What in my code is wrong here?
The "latest blog posts" module id is 39. The Ninja Modulizer ID is 42
I entered that in the Ninja Modulizer Module ID area.
I selected Module Chrome - Custom
I created a name for that: Latest Blog Post
In my custom HTML I enter below that, the code looks something like:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Some text</td>
</tr>
<tr>
<td><div id="nmz[39]" class="nmzbody nmzraw">
39 [39]
</div></td>
</tr>
</table>
but I also tried:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Some text</td>
</tr>
<tr>
<td><div id="nmz[42]" class="nmzbody nmzonediv">
<div class="nmzcontent nmzinner-1">[LatestBlogPost]</div>
</td>
</tr>
</table>
all give me the same results (http://server.iconixinc.com/wiroc/)
Any insight to what Im doing wrong would be greatly appreciated.
Thanks!

Joomla Extension Support