
Originally Posted by
toomanyknots
Sorry for being so slow to reply. The <!-- bof show product model in right side info --> is what I added to show the product model in the right side info, here you go:
Code:
....
<!--eof Product Price block -->
<!-- bof show product model in right side info -->
<id="modelproductinfo"><?php echo TEXT_PRODUCT_MODEL . $products_model; ?>
<!-- eof show product model in right side info -->
<!--bof Attributes Module -->
That <id="modelproductinfo"> does nothing - try
Code:
<!--eof Product Price block -->
<!-- bof show product model in right side info -->
<div id="modelproductinfo"><?php echo TEXT_PRODUCT_MODEL ;?> <?php echo $products_model ;?></div>
<!-- eof show product model in right side info -->
<!--bof Attributes Module -->
and in your stylesheet add this
Code:
#modelproductinfo {
your_styling_ goes_here;
}