Well I've got my descriptions showing, but would appreciate a little help with formatting if anyone can point me in the right direction. Here is the code block from new_products.php
$list_box_contents[$row][$col] = array('params' => 'class="centerBoxContentsNew centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',
'text' => (($new_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) ? '' : '<a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'cPath=' . $productsInCategory[$new_products->fields['products_id']] . '&products_id=' . $new_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $new_products->fields['products_image'], $new_products->fields['products_name'], IMAGE_PRODUCT_NEW_WIDTH, IMAGE_PRODUCT_NEW_HEIGHT) . '</a><br />') . '<a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'cPath=' . $productsInCategory[$new_products->fields['products_id']] . '&products_id=' . $new_products->fields['products_id']) . '">' . $new_products->fields['products_name'] . '</a><br />' . $products_price . '<br><br>' . zen_trunc_string(zen_clean_html(stripslashes(zen_get_products_description($new_p roducts->fields['products_id'], $_SESSION['languages_id']))), PRODUCT_LIST_DESCRIPTION)) ;
The product image, name, price and description all appear centered one above the other at http://www.diva############s.co.uk/test/index.php. What I want to do is use a table (or divs?) so that I can position image, name, and price on one side of the table (centered), with the description on the right side of the table (left aligned). I've been fiddling around with various ideas for ages but my lack of coding ability has left me stumped. I keep coming up with a bank page, or a list of capital 'As'!



