You are here:  » Display Featured products vertically

Support Forum



Display Featured products vertically

Submitted by anhmocboc on Wed, 2008-03-05 08:57 in

How can I display feature products vertically, so I can put it on the side? Just like 160x600 Adsense.

Submitted by support on Wed, 2008-03-05 11:25

Hi!

The featured products are displayed by html/featured.php.

This file uses a table to display the products horizontally. All you need to is modify it so that each table cell is in a new row. So, where you have:

    <tr>
      <?php foreach($featured["products"] as $product): ?>
        <td align='center'>

change this to:

      <?php foreach($featured["products"] as $product): ?>
        <tr>
          <td align='center'>

...and lower down where you have:

        </td>
      <?php endforeach; ?>
    </tr>

...change thos to:

        </td>
      </tr>
    <?php endforeach; ?>

That should do the trick!
Cheers,
David.