Quote Originally Posted by jettrue View Post
Ok, try changing:
Code:
$currencies->format($_SESSION['cart']->show_total()) . '</div>';
    $content .= '<br class="clearBoth" />';
to:
Code:
$currencies->format($_SESSION['cart']->show_total()) . '</div>';
$content .= '<br class="clearBoth" /></ div>';
The issue of the missing div may not be the mod itself, but an issue with the way I have the sideboxes set up. But adding the closing div above should address the issue.

Hmmm... There doesn't seem to be any visible change after adding the suggested code. You can view the results here:
PittiVintage

And below is the updated code:

Thanks - Tim

PHP Code:
<?php
/**
 * Side Box Template
 *
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cartt Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: tpl_shopping_cart.php 3056 2006-02-21 06:41:36Z birdbrain $
 */
  
$content ="";

  if (
$_SESSION['cart']->count_contents() > 0) {
  
$content .= '<div id="' str_replace('_''-'$box_id 'Content') . '" class="sideBoxContent">';
  
$content .= '<div id="cartBoxListWrapper">' "\n" '<ul>' "\n";
    
$products $_SESSION['cart']->get_products();
    for (
$i=0$n=sizeof($products); $i<$n$i++) {
      
$content .= '<li>';

      if ((
$_SESSION['new_products_id_in_cart']) && ($_SESSION['new_products_id_in_cart'] == $products[$i]['id'])) {
        
$content .= '<span class="cartNewItem">';
      } else {
        
$content .= '<span class="cartOldItem">';
      }

      
$content .= $products[$i]['quantity'] . BOX_SHOPPING_CART_DIVIDER '</span><a href="' zen_href_link(zen_get_info_page($products[$i]['id']), 'products_id=' $products[$i]['id']) . '">';

      if ((
$_SESSION['new_products_id_in_cart']) && ($_SESSION['new_products_id_in_cart'] == $products[$i]['id'])) {
        
$content .= '<span class="cartNewItem">';
      } else {
        
$content .= '<span class="cartOldItem">';
      }

      
$content .= zen_image(DIR_WS_IMAGES $products[$i]['image'], $products[$i]['name'], IMAGE_SHOPPING_CART_WIDTHIMAGE_SHOPPING_CART_HEIGHT) . '<br>' $products[$i]['name'] . '</span></a></li>' "\n";

      if ((
$_SESSION['new_products_id_in_cart']) && ($_SESSION['new_products_id_in_cart'] == $products[$i]['id'])) {
        
$_SESSION['new_products_id_in_cart'] = '';
      }
    }
    
$content .= '</ul>' "\n" '</div>';
  } else {
    
$content '<div class="sideBoxContent center bold">' BOX_SHOPPING_CART_EMPTY '</div>';
  }

  if (
$_SESSION['cart']->count_contents() > 0) {
    
$content .= '<hr />';
    
$content .= '<div class="cartBoxTotal">' $currencies->format($_SESSION['cart']->show_total()) . '</div>';
     
$content .= '<br class="clearBoth" /></ div>';
  }

  if (isset(
$_SESSION['customer_id'])) {
    
$gv_query "select amount
                 from " 
TABLE_COUPON_GV_CUSTOMER "
                 where customer_id = '" 
$_SESSION['customer_id'] . "'";
   
$gv_result $db->Execute($gv_query);

    if (
$gv_result->fields['amount'] > ) {
      
$content .= '<div id="cartBoxGVButton"  class="sideBoxContent"><a href="' zen_href_link(FILENAME_GV_SEND'''SSL') . '">' zen_image_button(BUTTON_IMAGE_SEND_A_GIFT_CERT BUTTON_SEND_A_GIFT_CERT_ALT) . '</a></div>'
      
$content .= '<div class="sideBoxContent center bold">' VOUCHER_BALANCE $currencies->format($gv_result->fields['amount']) . '</div>';
    }
  
$content .= '</div></div>';
  }
?>