9
Hi,
Check if code like this exists in your theme:
le="color: #000000"><?php <!-- Start center bottom blocks loop --> <{if $xoBlocks.page_bottomleft or $xoBlocks.page_bottomright or $xoBlocks.page_bottomcenter}> <table cellspacing="0"> <{if $xoBlocks.page_bottomcenter}> <tr> <td id="bottomCcolumn" colspan="2"> <{foreach from=$xoBlocks.page_bottomcenter item=block}> <{include file="$theme_name/theme_blockcenter_c.html"}> <{/foreach}> </td> </tr> <{/if}> <{if $xoBlocks.page_bottomleft or $xoBlocks.page_bottomright}> <tr> <td id="bottomLcolumn"> <{foreach from=$xoBlocks.page_bottomleft item=block}> <{include file="$theme_name/theme_blockcenter_l.html"}> <{/foreach}> </td> <td id="bottomRcolumn"> <{foreach from=$xoBlocks.page_bottomright item=block}> <{include file="$theme_name/theme_blockcenter_r.html"}> <{/foreach}> </td> </tr> <{/if}> </table> <{/if}> <!-- End center bottom blocks loop -->
under "<!-- End content module -->"
If not you are usig an old theme that does not support bottom position. You will need to edit your theme file and add this code.