Quote Originally Posted by jbabbling View Post
I am running Zen Cart 1.3.8 and have just installed the cherry_zen template. It looks great and is a great skin, however, when I activate the Cart Upsell module with it, the side boxes are all out of position on the shopping cart page. When I remove the Cart Upsell include (require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_CART_UPSELL)); ) from the tpl_shopping_cart_default.php template file, the side boxes return to normal. Does anyone have any ideas?
Found the issue. The version of cart_upsell.php I have has the </div> at the end of the file outside of the php if statement, thus inserting an additional </div> html tag in the page and throwing off the css. Here is how it looked before:

<div class="centerBoxWrapper" id="alsoPurchased">
<?php
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
}
}
?>
</div>


Here is how it should be coded:

<div class="centerBoxWrapper" id="alsoPurchased">
<?php
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
?>
</div>
<?php
}
}
?>