Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2007
    Posts
    36
    Plugin Contributions
    0

    Default added ssl sidebox , sidebox is not complete

    Hey all, my site is www.modchipcentral.com , i added the ssl and it works however the sidebox on the left is not fully completed on the bottom. anyone know how to fix that?

    thanks

  2. #2
    Join Date
    Feb 2007
    Posts
    36
    Plugin Contributions
    0

    Default Re: added ssl sidebox , sidebox is not complete

    bump anyone

  3. #3
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: added ssl sidebox , sidebox is not complete

    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 &amp; 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:

    HTML Code:
    <div id="informationContent" class="sideBoxContent">
    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.
    Last edited by econcepts; 12 May 2007 at 02:35 AM. Reason: spelling
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  4. #4
    Join Date
    Feb 2007
    Posts
    36
    Plugin Contributions
    0

    Default Re: added ssl sidebox , sidebox is not complete

    OK thanks, that added the bottom, now how do you add the side lines back to it?

    thanks for the help btw

  5. #5
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: added ssl sidebox , sidebox is not complete

    You still don't have the code correct. Here is what you have:

    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 &amp; 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 //-->
    Here is how it should look:
    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 &amp; 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>
    <div id="comodologoContent" class="sideBoxContent">
    
    <script type="text/javascript">TrustLogo("http://www.modchipcentral.com/catalog/includes/templates/comstock/images/secure_site.gif", "SC", "none");
    </script>
    /div>
    </div>
    <!--// eof: comodologo //-->
    Noticed that I added the following line of code to the second entry:

    <div id="comodologoContent" class="sideBoxContent">

    and then closed it of course with

    </div>

    You are missing that from your previous entry. I'm not sure what you did to the style in order to get the "bottom" to show, but you didn't need to do anything other than add the lines I indicated above. That will add the sidebars and bottom all in one shot.

    Hope that helps.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

 

 

Similar Threads

  1. Make 1 sidebox NOT display on SSL pages
    By tolefairy in forum Basic Configuration
    Replies: 1
    Last Post: 9 Jul 2007, 09:31 PM
  2. added comodo sidebox, sidebox not completed on bottom half
    By b18cya in forum Basic Configuration
    Replies: 4
    Last Post: 13 May 2007, 02:26 PM
  3. Added Sidebox the Header, Now it has no formatting!!
    By margecc in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 20 Mar 2007, 04:20 PM
  4. Click on Category in Sidebox and Only Open Sub-Cat In Sidebox, Not In Main Store
    By bamalama in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 17 Dec 2006, 04:45 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR