6
Hi
I've found my problem. When i was modfying a theme i used the spring time theme. This was using div ids for positioning but i couldnt get the banner ads right so i changed them to use tables instead because i find them easier and that solve that but caused the above.
The answer was found in the followin code in the theme.html in the theme folder.
le="color: #000000"><?php <!-- End display center blocks --> <div id="content"><{$xoops_contents}></div> </td> <{if $xoops_showrblock == 1}> <td id="rightcolumn" width="170">
Where it says
le="color: #000000"><?php <td id="content"><{$xoops_contents}></td>
Change to
le="color: #000000"><?php <div id="content"><{$xoops_contents}></div>
Hope it helps
ATB
Steve