I think, I did but there is still one more problem where I need help. Firstly How did I do it?
1. Copy and paste the content of define_main_page and create new PHP file, for example, sliderEx.php
2. Put this new file into includes/template/template_default/common
3. Delete the content of define_main_page.php in Admin
4. Add this php code below into tpl_main_page right after this line
HTML Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper">
(line 75)
PHP Code:
<?php
if (($_GET['main_page']='index') && (!isset($_GET['cPath']))) {
echo '<tr>';
require("sliderExperimental.php");
echo '</tr>';
}
?>
5. Update slider pictures and make them bigger with width:950px;
The problem is that when I click Contact_us or Login page it doesnt work. I meant that the code is not supposed to work in these pages. It seems that if statement is not working.
by the way, my testing page is
www.displayflash.com/onlinestore
any help, wellcome.