rachael_web86 Posted June 25, 2010 Posted June 25, 2010 Hello, was wondering if anyone could help me here please as I'm just baffled :-S If you visit sunglasses-store.co.uk you can see I have inserted a table into my includes/languages/english/index.php... In hope that my right hand column will place itself below this table. But it won't :( I have et the width to 100% but just cant get the right colum to go beneath this table... Would anyone know what code I have to use to achieve this? I know what code I would need to put into catalog/index/php... but then that moves the right column down on every page.. Tho it's just the homepage I need this effect :-S Any help would be greatly appreciated! Thank you in advance :)
Jan Zonjee Posted June 25, 2010 Posted June 25, 2010 Would anyone know what code I have to use to achieve this? I know what code I would need to put into catalog/index/php... but then that moves the right column down on every page.. Tho it's just the homepage I need this effect :-S Something along this line works for the column in which column right is placed: <!-- right_navigation //--> <?php if (!isset($cPath) || !tep_not_null($cPath)) { echo '<tr>' . "\n"; echo '<td class="main" style="padding-top: 50px;">Extra space here</td>' . "\n"; echo '</tr>' . "\n"; } ?> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> But since this is a table layout the "Your new content here" will not move over to the right side to fill the gap...
rachael_web86 Posted June 26, 2010 Author Posted June 26, 2010 Something along this line works for the column in which column right is placed: <!-- right_navigation //--> <?php if (!isset($cPath) || !tep_not_null($cPath)) { echo '<tr>' . "\n"; echo '<td class="main" style="padding-top: 50px;">Extra space here</td>' . "\n"; echo '</tr>' . "\n"; } ?> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> But since this is a table layout the "Your new content here" will not move over to the right side to fill the gap... But then would this not make the right column shift down on every page? I just need the right column to shift down on the homepage? :)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.