I'm trying to change the background of each of the product listings to look like they do on www.sweetbeadstudio.com. I think the code I need to change is:
when I change .centerBoxContentsProducts it changes that background of the whole column (32.5%), not just the width of image (which is what I would like to do). Does anyone have any suggestions?Code:if (PRODUCT_LISTING_LAYOUT_STYLE == 'columns') { $lc_text = implode('<br />', $product_contents); $list_box_contents[$rows][$column] = array('params' => 'class="centerBoxContentsProducts centeredContent forward"' . ' ' . 'style="width:' . $col_width . '%;"', 'text' => $lc_text); $column ++; if ($column >= PRODUCT_LISTING_COLUMNS_PER_ROW) { $column = 0; $rows ++; } }



