Table rows and all td's need class selectors.

table.uc-subproduct-product-list td:first-child
and
table.uc-subproduct-product-list td:first-child + td

Only get you so far. :)

Comments

larowlan’s picture

Hi Dan
I will add this to the module as time permits
In the meantime...
The table is themable so if you copy the function theme_uc_subproduct_cart_table_form from the module to your theme's template.php file and rename it YOURTHEMENAME_uc_subproduct_cart_table where YOURTHEMENAME is the theme name- you can add a class by changing the

$row[] = $output;

line to

$row[] = array('data' => $output,
            'class' => 'uc-subproduct-'. $field);
DanGarthwaite’s picture

That in the dev version?

larowlan’s picture

Status: Active » Fixed

Added to dev release, make sure you wait for the Drupal.org packaging script to make a new one (check the date)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.