a while has passed an I find myself with the same problem.
I have a skin with a simple 'pane'.
<div class="anotherpane" id="AnotherPane" runat="server" visible="false"></div><!-- anotherpane closes with previous div -->
My container is equally simple...
<!-- open simple container: -->
<div id="ContentPane" runat="server" class="simpledimpleccontent">
<dnn:SOLPARTACTIONS runat="server" id="dnnSOLPARTACTIONS" />
<h2 class="Head"><dnn:TITLE runat="server" id="dnnTITLE" /></h2>
</div><!-- previous div closes simple container -->
When I insert the forum into the page the pertinent html source the page generates looks like this:
<div id="dnn_AnotherPane" class="anotherpane">
<a name="370"></a>
<!-- start simple container: -->
<div id="dnn_ctr370_ContentPane" class="simpledimpleccontent" align="left">
<h2 class="Head"><span id="dnn_ctr370_dnnTITLE_lblTitle" class="Head">Forum</span>
</h2>
<!-- Start_Module_370 -->
<div id="dnn_ctr370_ModuleContent">
<link href="/DesktopModules... and all the table html for the forum (no more div tags though, opening or closing)
</table>
</div><!-- previous div ends simple container -->
</div><!-- anotherpane closes with previous div -->
Can anyone help? It seems like DNN is inserting an opening div with no closing div tag. It's inside the container and has the opening tag of:
<!-- Start_Module_370 -->
<div id="dnn_ctr370_ModuleContent">
ah the joys of development and design... I'll go cut the grass and see if you have an answer for me when I get back.