Then you are wanting to work with:
includes/languages/english/html_includes/YOUR_TEMPLATE/define_main_page.php
for adding Content to the main page.
Other options are display specific to the Home page by configuring:
includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php
For example:
To turn off the left column for the home page only, you would insert the following:
if ($this_is_home_page) {
$flag_disable_left = true;
}
To turn off the left and right columns for the home page only, you would insert the following:
if ($this_is_home_page) {
$flag_disable_left = true;
$flag_disable_right = true;
}



BRILLIANT! this is exaclty what I required thank you

