How can I display feature products vertically, so I can put it on the side? Just like 160x600 Adsense.
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.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
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.