I'm sure nobody has ever done that;)
Edit /includes/templates/your_template/templates/tpl_index_default.php, and move the define page section
PHP Code:
<?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
<?php
/**
* get the Define Main Page Text
*/
?>
<div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
<?php } ?>
to below the centerbox loop
PHP Code:
<?php
$show_display_category->MoveNext();
} // !EOF
?>
</div>
to get
PHP Code:
<?php
$show_display_category->MoveNext();
} // !EOF
?>
<?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
<?php
/**
* get the Define Main Page Text
*/
?>
<div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
<?php } ?>
</div>