I am using DNN forum project in my application. It loads successfully the Forum's home page with proper alignment.
This is my HTML skin.
<div id="pagemaster"
<div id="headerarea">....</div>
<div id="leftmenuarea">....</div>
<div id="contentarea">
[ codes for DNN forum ]
</div>
<div id="footerarea">....</div>
<div id="headermenu>....</div>
</div>
The forum's main page will be loaded in "contentarea" division.
If I click the "General" hyperlink from forum's main page, It is opening the list of forum screen. But it goes to the end of the page.
I checked the source code with browser's view source option, it looks like as follows, And I found a "Table" tag in improper place.
<div id="pagemaster"
<div id="headerarea">....</div>
<div id="leftmenuarea">....</div>
<div id="contentarea">
[ codes for DNN forum ]
<div id="footerarea">....</div>
<div id="headermenu>....</div>
</div>
</div>
Anyone know the reason? All other modules are working fine.