Page 1 of 1

sub Heading !

Posted: Mon Dec 21, 2009 3:43 am
by skippy0894
Is it possible to add another subheading

I.e now i have

Categories
Brands
Then something underneath if possible?

Any help on how to do this greatly appreciated

thanks

Re: sub Heading !

Posted: Mon Dec 21, 2009 6:53 am
by moggiex
skippy0894 wrote:Is it possible to add another subheading

I.e now i have

Categories
Brands
Then something underneath if possible?

Any help on how to do this greatly appreciated

thanks
Can you elaborate on this?

Matt

Re: sub Heading !

Posted: Mon Dec 21, 2009 7:21 am
by huhitschris
I'm assuming what you mean is that you'd like to add content underneath the modules on the left...

Open and edit:

catalog\view\theme\default\template\common\column_left.tpl

Code: Select all

<div id="column_left">
  <?php foreach ($modules as $module) { ?>
  <?php echo ${$module['code']}; ?>
  <?php } ?>

   /* This is where you can add your content */

</div>
Hope that helps.