Which sidebox is the blank sidebox? They all appear to have content to me...
The shopping cart problem is due to a misconfigured link.
In the HTML code you have this:
Code:
<a href="http://sugar-skull.com/shop/index.php?main_page=shopping_cart"><img src="http://sugar-skull.com/shop/images/cart.jpg" border="0"></a><br>
Note the lack of 'www'.
in the PHP source you should have this:
Code:
<a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="http://www.sugar-skull.com/shop/images/cart.jpg" border="0"></a><br>
BrandTim