Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Can you alter where the Left Colum is Positioned Just On Your Homepage


rachael_web86

Recommended Posts

Posted

Hi there,

 

I'm wondering is it possible to move the Left Hand Column (containing all my Categories) sightly down my homepage so I can add a big banner that goes across my homepage the full width of my homepage, and then when you scroll down a little the user can then see my categories on left hand side?

 

I ony want to place this banner on my homepage, so I don't need to re-position the left hand col on any of my other pages?

 

Many thanks in advance if any1 can let me kno if this is possible, or even pointing me into the right direction :D

Posted

hello..

 

Yes you can do this. You dont need to move the left column at all..

 

You need to look for the code where the mainpage blurb starts and then create table just above that which should work..

 

If i get chance i will post code for you. Just really busy at moment building sites. Sure you will figure it out.

Posted

hello..

 

Yes you can do this. You dont need to move the left column at all..

 

You need to look for the code where the mainpage blurb starts and then create table just above that which should work..

 

If i get chance i will post code for you. Just really busy at moment building sites. Sure you will figure it out.

 

 

Thank you soo much for your response.. I've tried placing it in like this:

 

<?php

/*

$Id: index.php 1739 2007-12-20 00:52:16Z hpdl $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2007 osCommerce

 

Released under the GNU General Public License

*/

<table border="1">

<tr>

<td>row 1, cell 1</td>

<td>row 1, cell 2</td>

</tr>

<tr>

<td>row 2, cell 1</td>

<td>row 2, cell 2</td>

</tr>

</table>

define('TEXT_MAIN', ' Designer Sunglasses');

define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');

define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products');

define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');

 

if ( ($category_depth == 'products') || (isset($HTTP_GET_V

 

But I'm getting errors,,, then once I place the code for the table inside the TEXT MAIN it jst inserts into the main text? Wee bit confused :-S Thank u for your time !

Posted

You're going about it all wrong. Undo what you have done above.

 

In catalog/index.php find

<!-- body //-->

Just below that add your table like so

<table width="100%" border="1" cellspacing="0" cellpadding="2">
 <tr>
   <td>Your new content here</td>
 </tr>
</table>

Posted

You're going about it all wrong. Undo what you have done above.

 

In catalog/index.php find

<!-- body //-->

Just below that add your table like so

<table width="100%" border="1" cellspacing="0" cellpadding="2">
 <tr>
   <td>Your new content here</td>
 </tr>
</table>

 

Brillant - working perfect.. thank you for your kind help :)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...