From looking at the code, it looks as if you are missing the style element that "completes" the side box. Your code is below. I copied the "Information side box" and the "SSL Certified" side box so you could compare the two codes. If you look further up the list of other side box elements, you'll see they all hold that "missing element". Your SSL box is missing it.
The code is below, and the missing element is highlighted in the next entry for easy viewing:
Your Current code:
HTML Code:<!--// bof: information //--> <div class="leftBoxContainer" id="information" style="width: 150px"> <h3 class="leftBoxHeading" id="informationHeading">Information</h3> <div id="informationContent" class="sideBoxContent"> <ul style="margin: 0; padding: 0; list-style-type: none;"> <li><a href="http://www.modchipcentral.com/catalog/index.php?main_page=shippinginfo">Shipping & Returns</a></li> <li><a href="http://www.modchipcentral.com/catalog/index.php?main_page=privacy">Privacy Notice</a></li> <li><a href="http://www.modchipcentral.com/catalog/index.php?main_page=conditions">Conditions of Use</a></li> <li><a href="http://www.modchipcentral.com/catalog/index.php?main_page=contact_us">Contact Us</a></li> </ul> </div></div> <!--// eof: information //--> <!--// bof: comodologo //--> <div class="leftBoxContainer" id="comodologo" style="width: 150px"> <h3 class="leftBoxHeading" id="comodologoHeading">SSL Certified</h3> <script type="text/javascript">TrustLogo("http://www.modchipcentral.com/catalog/includes/templates/comstock/images/secure_site.gif", "SC", "none"); </script> </div> <!--// eof: comodologo //-->
The "Missing Element" from the SSL Side box:
Don't forget the CLOSING "</div>" tag on that last missing element. I just gave you the first part of it to show you what element was missing. You need to make sure you close it as well.HTML Code:<div id="informationContent" class="sideBoxContent">



