You can add more text below the centerbox by using the code in /includes/templates/your_template/templates/tpl_index_default.php. Move this from line 28 to nearly the end of the file:
PHP Code:
<!-- deprecated - to use uncomment this section
<?php if (TEXT_INFORMATION) { ?>
<div id="" class="content"><?php echo TEXT_INFORMATION; ?></div>
<?php } ?>-->
Move to just above the last </div>:
PHP Code:
$show_display_category->MoveNext();
} // !EOF
?>
<!-- moved from line 28 - for extra text-->
<?php if (TEXT_INFORMATION) { ?>
<div id="bottomInfo" class="content"><?php echo TEXT_INFORMATION; ?></div>
<?php } ?>
</div>
Then edit /includes/languages/english/your_template/index.php around line 21:
PHP Code:
define('TEXT_INFORMATION', 'Define your main Index page copy here.');
Bookmarks