Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / New color - info product

New color - info product

Locked

Views: 407

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
22 Dec 2010, 7:04 PM
#1
dmagic avatar

dmagic

Totally Zenned

Join Date:
Oct 2008
Posts:
594
Plugin Contributions:
0

New color - info product

Model: G0146
Shipping Weight: 278 gram

How to apple this color ? on model ?

Thanks

22 Dec 2010, 7:32 PM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: New color - info product

We need more information on what you want where, and the site where you want it.

22 Dec 2010, 9:04 PM
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: New color - info product

There is no mechanism for styling just the model or weight value. You will have to edit
/includes/templates/your_template/templates/tpl_product_info_display.php

Line #118 :

<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . '<span class=detailValue">' . $products_model . '</span></li>' : '') . "\n"; ?>

Then add to your stylesheet

.detailValue {color: #aabbcc;}

Adjust to taste.