Results 1 to 8 of 8

Hybrid View

  1. #1
    Join Date
    Nov 2011
    Posts
    72
    Plugin Contributions
    0

    Default two rows in my header seemed to have vanished...

    hi all. i'm running zen cart v150. this is my site:

    http://www.c u l tivatedreef.com

    i've been making some relatively minor tweaks to my store and trying to pick up the pieces from a previous developer....while working on something today, i realized i have a new issue. while trying to edit the dynamics of my links menu (specifically getting rid of the drop down menu that you see when you hover over "new additions" and "coral sales") i've been playing with the code located in a file called tpl_drop_menu.php. the file is located here: www/includes/templates/mytemplate/common/ this seems to be the correct file which controls the dropdown menus.

    anyway, i was attempting to fix this issue like i do with all the other issues - trial and error. i save a backup of the original file in question (in this case tpl_drop_menu.php), and then make the edits as necessary on a copied notepad file, which i upload in the appropriate directory via ftp... and then i revert back to the original as the fixes don't work until i figure it out...

    i was having some FTP issues earlier, so to make sure the new file was correctly overwriting the old one, i decided to delete the file off the site via FTP to ensure a edited-version was being properly uploaded... the file uploaded, but my edits didn't fix the issue... no big deal, i can just reupload the original file as usual, right? WRONG. i uploaded the original and that's when i lost 2 entire rows of the top portion of my site

    so my first question is this: is deleting specific files in your zencart database via FTP a big no-no or something? even if you're re-uploading the same file? i've done this before without issue, so i'm shocked, and extremely frustrated now that i've created a whole new issue on top of the one i was originally going after.

    here is a screenshot of the area in question (outlined in red) that's seemed to disappear (taken from archive.org so not exact, but you get the idea):

    http://i589.photobucket.com/albums/s...Untitled-1.jpg

    my second, and perhaps most obvious question, is how exactly do i get this area to appear back the way it's supposed to? using firebug, i believe the two missing rows are defined in zencart as "BannerTwo" and "headBanner"... these codes still exist, and are still on the server, but i'm just not sure what to do. this is the original tpl_drop_menu.php code below:

    Code:
    <?php
    
    //
    
    // +----------------------------------------------------------------------+
    
    // |zen-cart Open Source E-commerce                                       |
    
    // +----------------------------------------------------------------------+
    
    // | Copyright (c) 2003 The zen-cart developers                           |
    
    // |                                                                      |
    
    // | http://www.zen-cart.com/index.php                                    |
    
    // |                                                                      |
    
    // | Portions Copyright (c) 2003 osCommerce                               |
    
    // +----------------------------------------------------------------------+
    
    // | This source file is subject to version 2.0 of the GPL license,       |
    
    // | that is bundled with this package in the file LICENSE, and is        |
    
    // | available through the world-wide-web at the following url:           |
    
    // | http://www.zen-cart.com/license/2_0.txt.                             |
    
    // | If you did not receive a copy of the zen-cart license and are unable |
    
    // | to obtain it through the world-wide-web, please send a note to       |
    
    // | [email protected] so we can mail you a copy immediately.          |
    
    // +----------------------------------------------------------------------+
    
    // $Id: tpl_drop_menu.php  2005/06/15 15:39:05 DrByte Exp $
    
    //
    
    
    
    ?>
    
    <!-- menu area -->
    
    
    
    <script type="text/javascript">
    
    var isAnimating = false;
    
    $(function () {
    
          $('#dropMenu .level1 .submenu.submenu').hover(function() {
    
    if (!isAnimating) {
    
      $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).fadeOut(1000);
    
      $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).fadeIn(1000);
    
      isAnimating = true;
    
    }
    
    }, function() {
    
    $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).fadeIn(1000);
    
    $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).fadeOut(1000);
    
    isAnimating = false;
    
    });});
    
    
    
    </script>
    
    
    
    <div id="dropMenuWrapper">
    
      <div id="dropMenuWrapperb">
    
        <div id="dropMenuWrapperc">
    
          <div id="dropMenuWrapperd">
    
            <div id="dropMenu">
    
              <ul class="level1">
    
                
    
          
    
                  <?php
    
    
    
     // load the UL-generator class and produce the menu list dynamically from there
    
     require_once (DIR_WS_CLASSES . 'categories_ul_generator.php');
    
     $zen_CategoriesUL = new zen_categories_ul_generator;
    
     $menulist = $zen_CategoriesUL->buildTree(true);
    
     $menulist = str_replace('"level4"','"level5"',$menulist);
    
     $menulist = str_replace('"level3"','"level4"',$menulist);
    
     $menulist = str_replace('"level2"','"level3"',$menulist);
    
     $menulist = str_replace('"level1"','"level2"',$menulist);
    
     $menulist = str_replace('<li class="submenu">','<li class="submenu">',$menulist);
    
     $menulist = str_replace("</li>\n</ul>\n</li>\n</ul>\n","</li>\n</ul>\n",$menulist);
    
     echo $menulist;
    
    ?>
    
                </li>
    
    			
    
    		<!-- bof Hidden Container 2 -->
    
    		<li class="submenu">
    
    <div id="blockTwo">
    
    <a href="index.php?main_page=products_new" onClick="showSlidingDiv2(); return false;">New Additions</a>
    
    
    
    <div id="container2">
    
    <script type="text/javascript">
    
    //<![CDATA[
    
    function showSlidingDiv2(){
    
    $("#slidingDiv2").animate({"height": "toggle"}, { duration: 1000 });
    
    }
    
    //]]>
    
    
    
    
    
    </script>
    
    
    
    
    
    
    
    
    
    <div id="slidingDiv2">
    
    <a href="#" onClick="showSlidingDiv2(); return false;"><span id="close">Click to Return to Menu</span></a>
    
    <?php $define_page_2 = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', FILENAME_DEFINE_PAGE_2, 'false');?>
    
    	<div id="indexDefaultMainContent" class="content"><?php require($define_page_2); ?></div>
    
    		
    
        </div>
    
    	</div></div></li>
    
    <!-- eof Hidden Container 2 -->
    
    
    
    <!-- bof Hidden Container 1 -->
    
    		<li class="submenu">
    
    <div id="blockOne">
    
    <a href="index.php?main_page=specials" onClick="showSlidingDiv1(); return false;">Coral Sales</a>
    
    
    
    <div id="container1">
    
    <script type="text/javascript">
    
    //<![CDATA[
    
    function showSlidingDiv1(){
    
    $("#slidingDiv1").animate({"height": "toggle"}, { duration: 1000 });
    
    }
    
    //]]>
    
    
    
    
    
    </script>
    
    
    
    
    
    
    
    
    
    <div id="slidingDiv1">
    
    <a href="#" onClick="showSlidingDiv1(); return false;"><span id="close">Click to Return to Menu</span></a>
    
    <?php $define_page_3 = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', FILENAME_DEFINE_PAGE_3, 'false');?>
    
    	<div id="indexDefaultMainContent" class="content"><?php require($define_page_3); ?></div>
    
    		
    
        
    
    	</div></div></div></li>
    
    <!-- eof Hidden Container 1 -->
    
                <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>"><?php echo HEADER_TITLE_INFORMATION; ?></a>
    
                  <ul class="level2">
    
    			    <?php if (DEFINE_SHIPPINGINFO_STATUS <= 1) { ?>
    
                    <li><a href="<?php echo zen_href_link(FILENAME_SHIPPING); ?>"><?php echo HEADER_TITLE_SHIPPING_INFO; ?></a></li>
    
    				<?php } ?>
    
    				<?php if (DEFINE_PRIVACY_STATUS <= 1)  { ?>
    
                    <li><a href="<?php echo zen_href_link(FILENAME_PRIVACY); ?>"><?php echo HEADER_TITLE_PRIVACY_POLICY; ?></a></li>
    
    				<?php } ?>
    
    				<?php if (DEFINE_CONDITIONS_STATUS <= 1) { ?>
    
                    <li><a href="<?php echo zen_href_link(FILENAME_CONDITIONS); ?>"><?php echo HEADER_TITLE_CONDITIONS_OF_USE; ?></a></li>
    
    				<?php } ?>
    
                    <!--<li><a href="<?php echo zen_href_link(FILENAME_ABOUT_US); ?>"><?php echo HEADER_TITLE_ABOUT_US; ?></a></li>-->
    
                    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
    
                    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
    
                    <?php } ?>
    
                    <?php if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') { ?>
    
                    <li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_GV_FAQ; ?></a></li>
    
                    <?php } ?>
    
                    <?php if (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') { ?>
    
                    <li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
    
                    <?php } ?>
    
                    
    
                    <li><a href="index.php?main_page=page&id=10">Newsletters</a></li>
    
    				
    
    				<li><a href="index.php?main_page=page&id=8">Stay Alive Guarantee</a></li>
    
                    <?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
    
                  </ul>
    
                </li>
    
                <li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
    
            
    
              </ul>
    
            </div>
    
          </div>
    
        </div>
    
      </div>
    
    </div><!-- end dropMenuWrapper-->
    
    <div class="clearBoth"></div>

    i'll post my stylesheet.css as a follow up message (exceeds character limit if i try to put it on this post)
    Last edited by irish_1985; 29 Sep 2012 at 10:54 PM.

  2. #2
    Join Date
    Nov 2011
    Posts
    72
    Plugin Contributions
    0

    Default Re: two rows in my header seemed to have vanished...

    finally, here is my stylesheet below. any suggestions? thanks in advance


    Code:
    /**
    
    
     * Main CSS Stylesheet
    
     *
    
     * @package templateSystem
    
     * @copyright Copyright 2003-2005 Zen Cart Development Team
    
     * @copyright Portions Copyright 2003 osCommerce
    
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    
     * @version $Id: stylesheet.css 3215 2006-03-20 06:05:55Z birdbrain $
    
     */
    
    
    
    body {
            height: 100%;
    	margin: 0 0 1em;
    	font-family:Arial, Helvetica, sans-serif;
    
    	font-size: 75%;
    
    	color: #333;
    	background-color:#fff;
    
    
    	}
    
    a{ color:#333; outline: none;}
    
    a img {border: none; }
    
    
    
    a:link, #navEZPagesTOC ul li a {
    
    	color: #333;
    	}
    
     .leftBoxContainer a{ color:#333}
     .leftBoxContainer{}
    .centerBoxContentsProducts{ color:#006600; font-weight:bold}
    
    a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
    
    	}
    
    
    
    a:active {
    
    	color: #0066FF;
    
    	}
    
    
    h1 {
    
    	font-size: 1.5em;
    
    	}
    
    
    
    h2 {
    
    	font-size: 1.4em;
    
    	}
    
    
    
    h3 {
    
    	font-size: 1.3em;
    
    	}
    
    
    
    h4, h5, h6, LABEL, h4.optionName, LEGEND, ADDRESS, .sideBoxContent, .larger{
    
    	font-size: 1.2em; font-family:Arial, Helvetica, sans-serif; color:#333
    
    	}
    
    
    
    .biggerText {
    
    	font-size: 1.2em;
    
    	}
    
    
    
    h1, h2, h3, h4, h5, h6 {
    
    	margin: 0.3em;
    
    	}
    
    
    
    CODE {
    
    	font-family: arial, verdana, helvetica, sans-serif;
    
    	font-size: 1em;
    
    	}
    
    
    INPUT{
     display: inline;
    
    	font-size: 1em;
    
    	margin: 0.1em;}
    
    FORM, SELECT, INPUT {
    
    	display: inline;
    
    	font-size: 1em;
    
    	margin: 0.1em;
    
    	}
    	
    
    
    TEXTAREA {
    
    	float: left;
    
    	margin: auto;
    
    	display: block;
    
    	width: 95%;
            
    
    	}
    
    
    
    input:focus, select:focus, textarea:focus {
    
    	background: #F0F8FF;
    
    	}
    
    
    
    FIELDSET {
    
    	padding: 0.5em;
    
    	margin: 0.5em 0em;
    
    	border: 1px solid #cccccc;
    
    	}
    
    
    
    LEGEND {
    
    	font-weight: bold;
    
    	padding: 0.3em;
    	color:#1385b7
    
    	}
    #checkoutPayment, #checkoutShipping{padding-right:5px}
    .centerBoxContentsNew a{ color:#dc522b; font-weight:bold; text-align:left}
    #gvFaqDefaultHeading, #specialsListingHeading, #advSearchDefaultHeading{ color:#1385b7; font-weight:normal}
    LABEL, h4.optionName {
    
    	line-height: 1.5em;
    
    	padding: 0.2em;
    
    	}
    
    
    
    LABEL.checkboxLabel, LABEL.radioButtonLabel {
    
    	margin: 0.5em 0.3em;
    
    	}
    
    
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    
    	float: left; 
    
    
    	}
    
    #logo {margin: 0;}	
    
    #logo img{
    
    	margin-top: 0px;
    
    	float: left;
    
    	padding-right: 10px; 
    
    
    }
    
    
    
    LABEL.inputLabel {
    
    	width: 11em;
    
    	float: left;
    
    
    	}
    
    
    
    LABEL.inputLabelPayment {
    
    	width: 15em;
    
    	float: left; 
    
    
    	}
    
    
    
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel  {
    
    	width: 12em;
    
    	float: left; 
    
    
    	}
    
    
    
    P, ADDRESS {
    
    	padding: 0.5em;
    
    	}
    
    
    
    ADDRESS {
    
    	font-style: normal;
    
    	}
    
    
    
    .clearBoth {
    
    	clear: both;
    
    	}
    
    
    
    HR {
    
    	height: 1px;
    
    	margin-top: 0.5em;
    
    	border: none;
    
    	border-bottom: 1px solid #92d4f4;
    
    	}
    
    
    
    /*warnings, errors, messages*/
    
    .messageStackWarning, .messageStackError, .messageStackSuccess, .messageStackCaution {
    
    	line-height: 1.8em;
    
    	padding: 0.2em;
    
    	border: 1px solid #1385b7;
    
    	}
    
    
    
    .messageStackWarning, .messageStackError {
    
    	background-color: #ff0000;
            text-decoration: blink;
    
    	color: #FFFFFF;
    
    	}
    
    
    
    .messageStackSuccess {
    
    	background-color: #99FF99;
    
    	color: #FFFFFF;
    
    	}
    
    
    
    .messageStackCaution {
    
    	color:#333;
    
    	}
    
    
    
    /*wrappers - page or section containers*/
    
    #mainWrapper {
            
    	background-color: #FFF;
    
    	text-align: left;
    
    	width: 1000px;
    
    	vertical-align: top;
            margin: auto;
    	}
    
    
    
    #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #popupAdditionalImage, #popupImage {
    
    	margin: 0em;
    
    	padding: 0em;
    
    	}
    
    #headerWrapper{
       margin: 0em;
       padding: 0em;
    }
    
    #logoWrapper {
    }
    
    #shippingBanner {float: left; margin-left: 30px;}
    
    #navBreadCrumb {
            
            font-size: 1.1em;
            font-weight: bold;
            padding: 0.4em 0 0em 1.5em;
            margin-top: 0;
            margin-bottom: 0;
    	border-left: 200px solid #fcac54;
    	background-color: #214083;
    	color: #FFF;
            height: 23px;
            clear: both;
    }
    
    #navBreadCrumb a{color: #ffd175;}
    
    #navColumnOneWrapper, #navColumnTwoWrapper {
    
    	margin: auto;
    	margin-top:-15px
    
    	} 
    
    #navColumnOneWrapper {float: left; margin-left: -2px;
    }
    
    #tagline {
    
    	padding-top:10px;
    
    	color:#000000;
    
    	font-size: 2em;
    
    	text-align : left;
    
    	padding-left: 300px;
    
    	vertical-align: middle;
    
    	}
    
    
    
    #sendSpendWrapper {
    
    	border: 1px solid #cacaca;
    
    	float: right; 
    
    
    	margin: 0em 0em 1em 1em;
    
    	}
    
    
    
    .floatingBox, #accountLinksWrapper, #sendSpendWrapper, #checkoutShipto, #checkoutBillto, #navEZPagesTOCWrapper {
    
    	margin: 0;
    
    	width: 47%;
    
    	}
    
    
    
    .wrapperAttribsOptions {
    
    	margin: 0.3em 0em;
    
    	}
    
    
    
    /*navigation*/
    
    
    
    .navSplitPagesResult {}
    
    .navSplitPagesLinks {}
    
    .navNextPrevCounter {
    
    	margin: 0em;
    
    	font-size: 0.9em;
    
    	}
    
    .navNextPrevList {
    
    	display: inline;
    
    	white-space: nowrap;
    
    	margin: 0;
    
    	padding:  0.5em 0em;
    
    	list-style-type: none;
    
    	}
    
    
    
    #navSuppWrapper, #navCatTabsWrapper, #navMainWrapper {
    
    	margin: 0em;
    
    	background-color: #FFF;
    
    	color: #999999;
    
    	height: 1%;
    
    	width: 100%;
    
    }
    
    
    #navSupp ul, #navCatTabs ul  {
    
    	margin: 0;
    
    	padding:  0.5em 0em;
    
    	list-style-type: none;
    
    	text-align: center;
    
    	line-height: 1.5em;
    
    	}
    
    
    
    #navMain ul.back {float: right;  height: 15px; width: 345px; margin: 38px 0 -38px 0; text-align: left; padding: 0.2em;
    }
    #navMain ul li, #navSupp ul li, #navCatTabs ul li {
    
    	display: inline;
    
    	white-space: nowrap;
    
    	}
    
    #navMain ul li {float: right;}
    #navMain ul li a:hover {color: #fcac54;}
    
    #navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {color: #555; font-size: 11pt;
    
    	text-decoration: none;
    
    	padding: 0em 0.5em;
    
    	margin: 0;
    
    	}
    
    
    
    #navEZPagesTOCWrapper {
    
    	font-weight: bold;
    
    	float: right;
    
    	height: 1%;
    
    	border: 1px solid #000000; 
    
    
    	}
    
    
    
    #navEZPagesTOC ul {
    
    	margin: 0;
    
    	padding:  0.5em 0em;
    
    	list-style-type: none;
    
    	line-height: 1.5em;
    
    	}
    
    
    
    #navEZPagesTOC ul li {
    
    	white-space: nowrap;
    
    	}
    
    
    
    #navEZPagesTOC ul li a {
    
    	padding: 0em 0.5em;
    
    	margin: 0;
    
    	}
    #categoryImgListing {height: 150px;}
    #categoryImgListing p {display: block; position: absolute; width: 275px; height: 140px; top: 101px; color: #fff; left: 525px; height: 140px; border: none;}
    #indexProductListCatDescription { margin: -200px 0 50px 200px; border: none; width: 290px; height: 140px; color: #fff; padding-top: 1em;}
    #navCategoryIcon, .buttonRow {
    
    	margin: 0.5em;
    
    	}
    
    #navMainSearch {display: none;}
    #indexHomeBody #navMainSearch { display: inline; float: left; position: relative; top: 481px; left: -560px;  background: transparent; padding: 0.62em;}
    
    
    #navEZPagesTop {
    
    	background-image:url(../images/fullwidth_capsule.gif);
    
    	background-repeat:no-repeat;
    
    	font-size: 0.95em;
    
    	font-weight: bold;
    
    	margin: 0em;
    
    	padding: 0.5em 0 0.5em 1.5em;
    
    	}
    
    
    
    #navColumnOne, #navColumnTwo {
    
    	background-color: #FFF;
    
    	}
    
    #navColumnOne {margin-left: 0px;}
    
    
    
    /*The main content classes*/
    
    #contentColumnMain, #navColumnOne, #navColumnTwo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .alert {
    
    	vertical-align: top;
    
    	}
    
    
    
    /*.content,*/ #productDescription, .shippingEstimatorWrapper {
    
    	/*font-size: 1.2em;*/
    
    	font-size:1.05em;
    	font-family:Arial, Helvetica, sans-serif;
    	width:45%;
    	float:left;
    
    	background-color:#f1fafe;
    	border:#1385b7 1px solid;
    		-moz-border-radius:5px;
    	-webkit-border-radius:5px
    
    	}
    
    
    
    .alert {
    
    	color: #FF0000;
    
    	margin-left: 0.5em;
    
    	}
    
    .advisory {}
    
    .important {
    
    	font-weight: bold;
    
    	}
    
    .notice {}
    
    .rating{}
    
    .gvBal {
    
    	float: right;
    
    
    	}
    
    .centerColumn, #bannerOne, #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix {
    
    	padding-left: 0.8em;
    
    	padding-right: 0.0em;
    
    	padding-top:1.5em;
    
    	}
    
    #centerColumn {margin: 1em;}
    
    .smallText, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP {
    
    	font-size: 0.9em;
    
    	}
    
    
    
    /*Shopping Cart Display*/
    
    /* your shopping cart - Top odd row color */
    
    .rowOdd {
    
    background-color: #000000;
    
    height: 1.5em;
    
    vertical-align: top;
    
    }
    
    
    
    /* your shopping cart - Top Even row color */
    
    .rowEven {
    
    height: 1.5em;
    
    vertical-align: top;
    
    }
    
    
    
    /* your shopping cart - Top boarder */
    
    TR.tableHeading {
    
    background-color: #000000;
    
    height: 2em;
    
    } 
    #productName{ color: #033F5F; font-family: Tahoma, Geneva, sans-serif; font-weight:normal; font-size:1.5em}
    #productPrices{ color:#090; font-family:Arial, Helvetica, sans-serif; font-size:1.15em}
    
    .tableHeading TH {
    
    	border-bottom: 1px solid #cccccc;
    
    	}
    
    
    
    .tableHeading, #cartSubTotal {
    
    	 }
    
    
    
    #cartSubTotal {
    
    	border-top: 1px solid #cccccc;
    
    	font-weight: bold;
    
    	text-align: right;
    
    	line-height: 2.2em;
    
    	padding-right: 2.5em;
    
    	}
    
    
    
    .tableRow, .tableHeading, #cartSubTotal {
    
    	height: 2.2em;
    
    	}
    
    
    
    .cartProductDisplay, .cartUnitDisplay, .cartTotalDisplay, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, #cartInstructionsDisplay, .cartTotalsDisplay   {
    
    	padding: 0.5em 0em;
    
    	}
    
    
    
    .cartUnitDisplay, .cartTotalDisplay {
    
    	text-align: right;
    
    	padding-right: 0.2em;
    
    	}
    
    
    
    #scUpdateQuantity {
    
    	width: 2em;
    
    	}
    
    
    
    .cartQuantity {
    
    	width: 4.7em;
    
    	}
    
    
    
    .cartNewItem {
    
    	color: #33CC33;
    
    	position: relative;  /*do not remove-fixes stupid IEbug*/
    
    	}
    
    
    
    .cartOldItem {
    
    	color: #660099;
    
    	position: relative;   /*do not remove-fixes stupid IEbug*/
    
    	}
    
    
    
    .cartBoxTotal {
    
    	text-align: right;
    
    	font-weight: bold;
    
    	}
    
    
    
    .cartRemoveItemDisplay {
    
    	width: 3.5em;
    
    	}
    
    
    
    #cartAttribsList {
    
    	margin-left: 1em;
    
    	}
    
    
    
    #mediaManager {
    
    width: 50%; 
    
    margin: 0.2em;
    
    padding: 0.5em;
    
    }
    
    .normalprice, .productSpecialPriceSale {
    
    	text-decoration: line-through;
    
    	}
    
    
    
    .productSpecialPrice, .productSalePrice, .productSpecialPriceSale, .productPriceDiscount {
    
    	color: #ff0000;
    
    	}
    
    
    
    #cartBoxListWrapper ul, #ezPageBoxList ul {
    
    	list-style-type: none;
    
    	}
    
    
    
    #cartBoxListWrapper li, #ezPageBoxList li, .cartBoxTotal {
    
    	margin: 0;
    
    	padding: 0.2em 0em;
    
    	} 
    
    
    
    .totalBox {
    
    	width: 5.5em;
    
    	text-align: right;
    
    	padding: 0.2em;
    
    	}
    
    
    
    .lineTitle, .amount {
    
    	text-align: right;
    
    	padding: 0.2em;
    
    	}
    
    
    
    .amount {
    
    	width: 5.5em;
    
    	}
    
    
    
    /*Image Display*/
    #productMainImage{float:left; width:49%; margin-left:-15px;
    }
    #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
    
    	margin: 0em 1em 1em 0em ;
    
    	}
    
    
    
    .categoryIcon {}
    
    #cartImage {
    
    	margin: 0.5em 1em;
    
    	}
    
    .auth{ margin-left:30px; margin-top:5px; margin-bottom:5px}
    
    /*Attributes*/
    
    .attribImg {
    
    	width: 20%;
    
    	margin: 0.3em 0em;
    
    }
    
    
    
    .attributesComments {}
    
    
    
    /*list box contents*/
    
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
    
    	margin: 1em 0em;
    
    	}
    
    
    
    /*sideboxes*/
    
    .columnLeft {}
    
    
    
    h3.leftBoxHeading, h3.leftBoxHeading a, h3.leftBoxHeading label, h3.rightBoxHeading, h3.rightBoxHeading a, h3.rightBoxHeading label {
    
    	font-size: 1.06em;
    	font-family: Arial, Helvetica, sans-serif;
    	font-weight:bold;
    	text-align:center;
    	padding-left:4px;
    	color: #FFF
    
    	}
    
    	
    
    h3.leftBoxHeading a:hover, h3.rightBoxHeading a:hover{
    
    	color: #FFFF33;
    
    	text-decoration: none;
    
    	} 
    
    
    
    .leftBoxHeading, .rightBoxHeading {
    
    	margin: 0em;
    
    	background: #214083 /*url(includes/templates/cultivatedfrags/images/headerline.gif)*/;
    	background-repeat:repeat-x;
    	padding-bottom:3px;
    	padding-top:1px;
    		font-size: 1.06em;
    	font-family: Arial, Helvetica, sans-serif;
    	font-weight:bold;
    	text-align: center;
    	color: #FFF;
    	}
    
    
    .centerBoxHeading {
    background-color:#1385b7;
    color:#FFFFFF;
    -webkit-border-radius:5px;
    
    	background-repeat:no-repeat;
    
    	padding: 0.2em 0.2em;
    	padding-left:5px
    
    	}
    
    #whatsNew .centerBoxHeading a {color: #fff;}
    
    .leftBoxContainer {
    
    	margin-top: 1.5em;
    
    	margin-left: 0.2em;
    
    	margin-right: 0.2em;
    	line-height:20px;
    	border:solid 1px #92d4f4;
    		-webkit-border-radius:5px
    	
    	}
    
    	
    
    .rightBoxContainer {
    
    	/* align: right; */
    
    	background-image:url(../images/sidebox_middle.gif);
    
    	background-repeat:repeat;
    
    	margin-top: 1.5em;
    
    	margin-left: -0.05em;
    
    	margin-right: 0.2em;
    
    	}	
    
    
    
    .sideBoxContent {
    
    	padding: 0.35em;
    
    	}
    
    
    .centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo,  #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .productListing-data, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .gvBal, .attribImg {
    
    	text-align: center;
    
    	}
    
    
    
    #bestsellers .wrapper {
    
    	margin: 0em 0em 0em 1.5em;
    
    	}
    
    
    
    #bestsellers ol {
    
    	padding: 0;
    
    	margin-left: 1.1em;
    
    	}
    
    
    
    #bestsellers li {
    
    	padding: 0;
    
    	margin: 0.3em 0em 0.3em 0em;
    
    	}
    
    
    
    #bannerboxHeading {
    
    	background-color: #0000CC;
    
    }
    
    
    
    #upProductsHeading {
    
    	text-align: left;
    
    	}
    
    
    
    #upDateHeading {
    
    	text-align: right;
    
    	}
    
    
    
    /*misc*/
    
    .back {
    
    	float: left;
    
    
    	}
    
    
    
    .forward {
    
    	float: right;
    
    
    	}
    
    
    
    .rowOdd {
    
    	background-color: #FFF;
    
    	height: 1.5em;
    
    	vertical-align: top;
    
    	}
    
    
    
    .rowEven {
    
    	height: 1.5em;
    
    	vertical-align: top;
    
    	}
    
    
    
    CAPTION {
    
    	/*display: none;*/
    
    	}
    
    
    
    #myAccountGen li, #myAccountNotify li {
    
    	margin: 0;
    
    	} 
    
    
    
    .accountTotalDisplay, .accountTaxDisplay {
    
    	width: 20%;
    
    	text-align: right;
    
    	/*vertical-align: top*/
    
    	}
    
    
    
    .accountQuantityDisplay {
    
    	width: 10%;
    
    	vertical-align: top
    
    	}
    
    
    
    TR.tableHeading {
    
    	background-color: #1385b7;
    
    	height: 2em;
    	color:#FFF
    
    	}
    
    
    
    #siteMapList {
    
    	width: 90%;
    
    	float: right;
    
    
    	}
    
    
    
    .ratingRow {
    
    	margin: 1em 0em 1.5em 0em;
    
    	}
    
    
    
    LABEL#textAreaReviews {
    
    	font-weight: normal;
    
    	margin: 1em 0em;
    
    	}
    
    #productDetailsList li {background: #f1fafe; color: green; padding: 0.5em; list-style: none; width: 105px; height: 17px; border: 1px solid #1385b7; border-top: 10px solid #214083; text-align: center; margin: 0 0 1em 7em; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    
    
    #specialsDefault img {width: 145px; height: 145px;}
    
    #productListHeading{ font-weight:normal; font-size:1.8em; color:#1385b7; border-bottom:#1385b7 1px solid}
    
    #popupShippingEstimator, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp {
    
    	background-color: #000000;
    
    	}
    /* Products Listing Adding */
    
    .productListing-odd {
    
    background-color: #000000;
    
    height: 75px; /* the 100px should be greater than the (Image - Product Listing Height 80px) default in Admin */
    
    padding: 0.2em 0em 0.2em 0em;
    
    }
    .productListing-even {
    
    background-color: #333333;
    
    height: 75px; /* the 100px should be greater than the (Image - Product Listing Height 80px) default in Admin */
    
    padding: 0.2em 0em 0.2em 0em;
    
    }
    
    
    
    .productListing-data {
    
    padding: 0.5em 0.2em 0.5em 0.2em;
    
    }
    .itemTitle {
    
    text-align: left;
    }
    .itemTitle a{
    font-size:.85em; color:#1385b7
    }
    .listingDescription{ text-align:center; padding-left:7px; padding-right:5px}
    #advSearchDefault{ padding-right:5px}
    
    #phone{ float:right; font-size:1.05em; color:#1385b7; font-weight:bold; margin-right:5px; text-align:right;
    }
    .phonenumber{ font-size:1.2em}
    
    
    #blanksidebox3Content {text-align: center;}
    
    .bettertestimonial {font-size: 12px; text-align: left;}
    .testimonial p{border-top: 1px solid #92d4f4; margin-top: 0; padding-top: 4px;}
    #testimonials-managerContent b a {color: #4da0f0;  margin: 0 0 0 0px; text-decoration: none;}
    .testimonial a {color: #fff; font-weight: normal; margin-left: 45px; padding: 0.1em; text-decoration: none; background: #2985d8; border: 2px solid #214083; -moz-border-radius: 8px; -webkit-border-radius: 8px; -khtml-border-radius: 8px; border-radius: 8px; }
    #goal {display: none;}
    #specialsListing.centerColumn .specialsListBoxContents img {height: 145px; width: 145px;}
    #headBanner{display: none;}
    #indexCategories .centerBoxContentsSpecials.centeredContent.back img{height: 170px; width: 170px;}
    
    img.listingProductImage {border: 2px solid #1385b7; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    #slimboxWrapper img {border: 2px solid #1385b7; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    
    
    #indexHomeBody #navColumnOneWrapper form{display: none;}
    #navColumnOneWrapper form {position: relative; float: right; background: transparent; margin: -13px -9px 0px; height: 26px; width: 190px;  padding: 2px 1px 1px 18px;
    }
    
    
    
    
    #container1 { margin-top: -26px; height: 26px; }
    
    #close {color: #fcac54; font-size: 8pt; background: #214083; border: 2px solid #278ebb; padding: 0.5em; position: absolute-top; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    
    
    
    
    /*
    #blockOne, #blockTwo { height: 26px;  width: 125px;   float: left; background: url(../images/blue_bg.png) repeat-x;  padding: 0 0 0 0;
    }
    #blockOne a, #blockTwo a {font-size: 12px; font-weight: normal; text-decoration: none; color: #fff; text-align: center; display: inline; line-height: 13px; margin-bottom: 14px;  }
    a {outline: 0; border: none;}
    
    #blockOne:hover, #blockTwo:hover {background: url(../images/black_bg.png) repeat-x;}
    #blockOne a:hover, #blockTwo a:hover {color: #f0ffff;}*/
    
    #slidingDiv1, #slidingDiv2 {   
            display: none;
    	background: #fff;
    	padding: 0px;
            border: 1px solid #ccc;
    	border-bottom: 15px solid #214083;
         /*   opacity: 0.9; 
            filter:alpha(opacity=90); */
            z-index: 1000; margin-top: -26px;
    }
    
    #slidingDiv1 {position: absolute; top: 25px; left: -625px; text-align: center; overflow: hidden;}
    #slidingDiv1 #specialsDefault.centerBoxWrapper {background: #fff; border: none;}
    #slidingDiv1 h2.centerBoxHeading  {background: #214083; height: 12px; width: 100%; margin: auto auto; margin-top: 20px;}
    #slidingDiv1 h2.centerBoxHeading a {padding: 0;}
    #slidingDiv1 .centerBoxContentsSpecials.centeredContent.back a { color: #555; background-image: none; padding: 0;}
    #slidingDiv1 .centerBoxContentsSpecials.centeredContent.back a:hover {background: #fff;}
    #slidingDiv1 .centerBoxContentsSpecials.centeredContent.back img {height: 145px; width: 145px; border: 1px solid #ccc; background: #1385b7; padding: 2px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    #slidingDiv1 .centerBoxContentsSpecials.centeredContent.back { padding-top: 15px; margin-left: 2%; width: 21%; max-width: 22%;}
    
    
    
    
    #slidingDiv2 {position: absolute; top: 25px; left: -500px; text-align: center; overflow: hidden; }
    #slidingDiv2 #whatsNew.centerBoxWrapper {margin-top: 1em; }
    #slidingDiv2 .centerBoxHeading {height: 12px; width: 100%; margin: auto auto; background: #214083;}
    #slidingDiv2 .centerBoxHeading a {padding: 0;}
    #slidingDiv1, #slidingDiv2 {width: 1000px; height: 600px; }
    #slidingDiv2 .centerBoxContentsNew.centeredContent.back a { color: #555; background-image: none; padding: 0; margin-right: -1px;}
    #slidingDiv2 .centerBoxContentsNew.centeredContent.back img {border: 1px solid #ccc; background: #1385b7; padding: 2px; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    #slidingDiv2 .centerBoxContentsNew.centeredContent.back {padding-top: 15px; margin-left: 2%; width: 21%; max-width: 22%; }
    #slidingDiv2 .centerBoxContentsNew.centeredContent.back:hover {}
    #slidingDiv2 .centerBoxContentsNew.centeredContent.back:hover.centerBoxContentsNew.centeredContent.back a{background: #fff;}
    
    #whatsNew .centerBoxHeading {background: #214083;}
    #specialsDefault .centerBoxHeading {background: #214083;}
    #whatsNew .centerBoxHeading a {color: #fff; }
    #whatsNew.centerBoxWrapper h2.centerBoxHeading a:hover {background: #214083;}
    #specialsDefault.centerBoxWrapper h2.centerBoxHeading a:hover {background: #214083;}
    #specialsDefault img {border: 1px solid #1385b7;  -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    #specialsListing img {background: #f1fafe; border: 2px solid #1385b7;  -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    #alsoPurchased img {border: 2px solid #1385b7;  -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    .new_products { 
    		float: left; 
    		width: 15.5%; 
    		text-align: center; 
    		padding: 3px 28px;
    		}
    
    .new_products h3.itemTitle {margin-top: -1em; width: 100%; text-align: center;}
    
    	
    .new_products img {height: 145px; width: 145px; background: #f1fafe; border: 2px solid #1385b7;  -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    
    
    
    #shoppingcart.leftBoxContainer ul a{text-decoration: none; font-size: 8pt; color: #214083; }
    #shoppingcart.leftBoxContainer span.cartOldItem {color: #ff0000; margin-left: -50px; }
    #shoppingcart.leftBoxContainer ul li {border-bottom: 1px dotted #214083; margin-bottom: 10px; text-align: center;}
    #shoppingcart.leftBoxContainer .cartBoxTotal {color: #ff0000;}
    #shoppingcart.leftBoxContainer img {border: 1px solid #1385b7;  -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px;}
    
    #emailNotice {
       margin-left: auto;
       margin-right: auto;
       margin-top: 20px;
       padding: 0.5em;
       width: 98%;
       height: 100px;
       border: 1px solid #ccc;
    }
    
    .emailNoticeHeading {
       padding-left: 0.3em;
       font-size: 1.2em;
       color: #ff0000;
       font-weight:bold;
       margin: -15px 0 0 2px;
       background: #fff;
       width: 12%;
    }
    
    #wysiwygNotice { 
       position: relative; 
       top: -220px; 
       left: 365px; 
       color: blue; 
       font-size: 12pt;
       text-align: center;
       width: 365px;
       	background-color: #F1FAFE;
    	border: 1px solid #1385b7;
    	padding:15px;
    			-moz-border-radius:5px;
    	-webkit-border-radius:5px
    }
     #wysiwygNotice a {
     	color: blue;
       text-decoration: none;
     }
    
    #blockOne , #blockTwo  {background: #1f3972; background-image: none;}

  3. #3
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    20,021
    Plugin Contributions
    3

    Default Re: two rows in my header seemed to have vanished...

    Sorry, but I have no idea what you're asking.

    is deleting specific files in your zencart database via FTP a big no-no or something?

    There are no files in your Zencart database. FTP is the way you add/delete/edit files in your server.

    There's no reason to post your stylesheet files here. We can see those if we have a link to your site.

    I'm not seeing any options when I hover over 'New Additions' or 'Coral Sales'.

  4. #4
    Join Date
    Nov 2011
    Posts
    72
    Plugin Contributions
    0

    Default Re: two rows in my header seemed to have vanished...

    thanks for your reply. sorry my questions were confusing. the dropdown menus in question you actually have to CLICK to activate... not hover as i originally indicated. these dropdown menus are listed in the menu as "new additions" and "coral sales". regardless though, the issue i'm having is that upon trying to edit these dropdown menus (via my tpl_drop_menu.php file) i somehow wreaked havoc on the header area of my site... so i'm just looking to get my header area back to normal and will tackle the dropdown menu issue at a later time.

    the only explanations on how my header area went out of whack is that upon deleting the tpl_drop_menu.php file via FTP it somehow caused "other files" connected to it to tweak (which doesn't make a whole lot of sense to me but hey, i'm not an expert) OR i somehow accidentally tweaked part of the backup tpl_drop_menu.php file and uploaded this troublesome file onto the site...i really REALLY don't think i did the latter, but who knows at this point.

    this is a screenshot of the area that's missing (outlined in red) that i'd like to try and resurrect:

    http://i589.photobucket.com/albums/s...Untitled-1.jpg

    please note, i captured the screenshot above by bringing up an older version of the site via archive.org... so it's not exact (archived file is over a year old) but it gives you the general idea of what's missing.

    hopefully this makes a bit more sense... i tend to over-analyze everything, which instead of making things more clear probably just makes things more confusing.
    Last edited by irish_1985; 30 Sep 2012 at 12:09 AM.

  5. #5
    Join Date
    Nov 2011
    Posts
    72
    Plugin Contributions
    0

    Default Re: two rows in my header seemed to have vanished...

    update: i was able to pull a cached version from google chrome that displays the correct header elements. here's the source (part 1 of 2)

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 
    
    Transitional//EN" 
    
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
    
    transitional.dtd"><meta http-equiv="Content-
    
    Type" content="text/html; charset=UTF-8">
    <base href="http://cultivatedreef.com/"><div 
    
    style="background:#fff;border:1px solid 
    
    #999;margin:-1px -1px 0;padding:0;"><div 
    
    style="background:#ddd;border:1px solid 
    
    #999;color:#000;font:13px arial,sans-
    
    serif;font-
    
    weight:normal;margin:12px;padding:8px;text-
    
    align:left">This is Google&#39;s cache of <a 
    
    href="http://cultivatedreef.com/" style="text-
    
    decoration:underline;color:#00c">http://cultivat
    
    edreef.com/</a>. It is a snapshot of the page as 
    
    it appeared on Sep 23, 2012 14:47:17 GMT. The <a 
    
    href="http://cultivatedreef.com/" style="text-
    
    decoration:underline;color:#00c">current 
    
    page</a> could have changed in the meantime. <a 
    
    href="http://support.google.com/websearch/bin/an
    
    swer.py?hl=en&amp;p=cached&amp;answer=1687222" 
    
    style="text-
    
    decoration:underline;color:#00c">Learn 
    
    more</a><br>Tip: To quickly find your search 
    
    term on this page, press <b>Ctrl+F</b> or <b>?-
    
    F</b> (Mac) and use the find bar.<br><br><div 
    
    style="float:right"><a 
    
    href="http://webcache.googleusercontent.com/sear
    
    ch?
    
    q=cache:http://cultivatedreef.com&amp;hl=en&amp;
    
    prmd=imvns&strip=1" style="text-
    
    decoration:underline;color:#00c">Text-only 
    
    version</a></div>
    <div>&nbsp;</div></div></div><div 
    
    style="position:relative">
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 
    
    Transitional//EN" 
    
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
    
    transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" 
    
    dir="ltr" lang="en">
    <head>
    <title>CultivatedReef.com, Aquacultured Coral 
    
    Frags</title>
    <meta http-equiv="Content-Type" 
    
    content="text/html; charset=iso-8859-1" />
    <meta name="keywords" content="WYSIWYG Inverts 
    
    Dry Goods Corals Aquacultured, Aquacultured 
    
    Coral, Coral Frags, SPS, LPS, Corallimorphs, 
    
    Corallimorphs, Zoanthid, Palythoa, Palythoa 
    
    Soft, Soft Coral, Coral Anemone, WYSIWYG, Coral 
    
    Reef, coral frag pack, coral frag tank, coral 
    
    frag plugs, coral frag swap, coral frag for 
    
    sale, coral frag trading, coral frag rack, coral 
    
    frag glue, coral frag trade, coral frag 
    
    supplies, zoanthid frags, zoanthid care, 
    
    zoanthid propagation, zoanthid polyps, zoanthid 
    
    coral, zoanthid, zoanthid eating nudibranch, 
    
    purple people eater zoanthid, blue zoanthid, 
    
    zoanthid colony, acropora coral, acropora 
    
    palmata, acropora millepora, acropora formosa, 
    
    acropora tenuis, acropora frags, acropora 
    
    valida, acropora humilis, acropora hyacinthus, 
    
    acropora sp, acropora coral, acropora palmata, 
    
    acropora millepora, acropora formosa, acropora 
    
    tenuis, acropora frags, acropora valida, 
    
    acropora humilis, acropora hyacinthus, acropora 
    
    sp, ricordia yuma, florida ricordia, ricordia 
    
    mushroom, ricordia coral, ricordia for sale, 
    
    orange ricordia, ricordia care, green ricordia, 
    
    blue ricordia, ricordia propagation, palythoa 
    
    grandis, palythoa toxica, palythoa polyps, 
    
    palythoa sp, purple death palythoa, palythoa 
    
    caribaeorum, palythoa coral, palythoa toxin, 
    
    zooanthids palythoa, ppe palythoa, coral farm 
    
    singapore, pacific coral farm, reef systems 
    
    coral farm, australian coral farm, coral farm 
    
    ohio, florida coral farm, ora coral farm, " />
    <meta name="description" 
    
    content="CultivatedReef.com :  - WYSIWYG Inverts 
    
    Dry Goods Corals Aquacultured, Aquacultured 
    
    Coral, Coral Frags, SPS, LPS, Corallimorphs, 
    
    Corallimorphs, Zoanthid, Palythoa, Palythoa 
    
    Soft, Soft Coral, Coral Anemone, WYSIWYG, Coral 
    
    Reef, coral frag pack, coral frag tank, coral 
    
    frag plugs, coral frag swap, coral frag for 
    
    sale, coral frag trading, coral frag rack, coral 
    
    frag glue, coral frag trade, coral frag 
    
    supplies, zoanthid frags, zoanthid care, 
    
    zoanthid propagation, zoanthid polyps, zoanthid 
    
    coral, zoanthid, zoanthid eating nudibranch, 
    
    purple people eater zoanthid, blue zoanthid, 
    
    zoanthid colony, acropora coral, acropora 
    
    palmata, acropora millepora, acropora formosa, 
    
    acropora tenuis, acropora frags, acropora 
    
    valida, acropora humilis, acropora hyacinthus, 
    
    acropora sp, acropora coral, acropora palmata, 
    
    acropora millepora, acropora formosa, acropora 
    
    tenuis, acropora frags, acropora valida, 
    
    acropora humilis, acropora hyacinthus, acropora 
    
    sp, ricordia yuma, florida ricordia, ricordia 
    
    mushroom, ricordia coral, ricordia for sale, 
    
    orange ricordia, ricordia care, green ricordia, 
    
    blue ricordia, ricordia propagation, palythoa 
    
    grandis, palythoa toxica, palythoa polyps, 
    
    palythoa sp, purple death palythoa, palythoa 
    
    caribaeorum, palythoa coral, palythoa toxin, 
    
    zooanthids palythoa, ppe palythoa, coral farm 
    
    singapore, pacific coral farm, reef systems 
    
    coral farm, australian coral farm, coral farm 
    
    ohio, florida coral farm, ora coral farm," />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="author" content="The Zen Cart&trade; 
    
    Team and others" />
    <meta name="generator" content="Dev-PHP 2.4.0" 
    
    />
    <link rel="icon" href="favicon.ico" 
    
    type="image/x-icon" />
    <link rel="shortcut icon" href="favicon.ico" 
    
    type="image/x-icon" />
    
    <base href="http://cultivatedreef.com/" />
    
    <link rel="stylesheet" type="text/css" 
    
    href="min/?
    
    f=/includes/templates/cultivatedfrags/css/style_
    
    imagehover.css,/includes/templates/cultivatedfra
    
    gs/css/style_nivo-
    
    slider.css,/includes/templates/cultivatedfrags/c
    
    ss/stylesheet.css,/includes/templates/cultivated
    
    frags/css/stylesheet_header_menu.css,/includes/t
    
    emplates/cultivatedfrags/css/stylesheet_slimbox_
    
    ex.css,/includes/templates/cultivatedfrags/css/s
    
    tylesheet_zebra_dialog.css,/includes/templates/c
    
    ultivatedfrags/css/index_home.css&amp;1346530709
    
    " />
    <script type="text/javascript" src="min/?
    
    f=/includes/templates/cultivatedfrags/jscript/js
    
    cript_imagehover.js,/includes/templates/cultivat
    
    edfrags/jscript/jscript_jquery-
    
    1.7.2.min.js,/includes/templates/cultivatedfrags
    
    /jscript/jscript_jquery.js,/includes/templates/c
    
    ultivatedfrags/jscript/jscript_jquery.nivo.slide
    
    r.pack.js,/includes/templates/cultivatedfrags/js
    
    cript/jscript_zebra_dialog.js,/includes/template
    
    s/cultivatedfrags/jscript/jscript_zebra_dialog.s
    
    rc.js&amp;1346530709"></script>
    </head>
     <body id="indexHomeBody">
    
    <div id="mainWrapper">
    
    
    
    <!--bof-header logo and navigation display-->
    
    <div id="headerWrapper">
    <div id="logoWrapper">
        <div id="logo"><a 
    
    href="http://cultivatedreef.com/"><img 
    
    src="includes/templates/cultivatedfrags/images/l
    
    ogo.gif" alt="CulturedFrags.com - Fine 
    
    Aquatcultured Captive Raised Coral Frags" 
    
    title=" CulturedFrags.com - Fine Aquatcultured 
    
    Captive Raised Coral Frags " width="556" 
    
    height="91" /></a>	</div></div>
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
    <!--    <li><a 
    
    href="http://cultivatedreef.com/">Home</a></li> 
    
    -->
        <li><a 
    
    href="https://cultivatedreef.com/index.php?
    
    main_page=login">Log In</a></li>
    
    </ul>
    
    	
    <div id="navMainSearch"><form 
    
    name="quick_find_header" 
    
    action="http://cultivatedreef.com/index.php?
    
    main_page=advanced_search_result" 
    
    method="get"><input type="hidden" 
    
    name="main_page" value="advanced_search_result" 
    
    /><input type="hidden" 
    
    name="search_in_description" value="1" /><input 
    
    type="text" name="keyword" size="6" 
    
    maxlength="30" style="width: 100px; background-
    
    color:#214083; color:#FFF" value="Search 
    
    Livestock" onfocus="if (this.value == 'Search 
    
    Livestock') this.value = '';" onblur="if 
    
    (this.value == '') this.value = 'Search 
    
    Livestock';" />&nbsp;<input type="submit" 
    
    value="Search" style="width: 55px; background-
    
    color:#214083; color:#FFF" /></form></div></div>
    <br class="clearBoth" />
    </div>
    <!--bof-navigation display-->
    
    
    <!--eof-navigation display-->
    
    <!--bof-branding display-->
    <script type="text/javascript">
    $(window).load(function() {
    	$('#slider').nivoSlider({
            effect:'random', //Specify sets like: 
    
    'fold,fade,sliceDown'
            slices:8,
            animSpeed:1400, //Slide transition speed
            pauseTime:5000,
            startSlide:0, //Set starting Slide (0 
    
    index)
            directionNav:true, //Next & Prev
            directionNavHide:true, //Only show on 
    
    hover
            controlNav:true, //.,.,
            controlNavThumbs:false, //Use thumbnails 
    
    for Control Nav
            controlNavThumbsFromRel:false, //Use 
    
    image rel for thumbs
            controlNavThumbsSearch: '.jpg', 
    
    //Replace this with...
            controlNavThumbsReplace: '_thumb.jpg', 
    
    //...this in thumb Image src
            keyboardNav:true, //Use left & right 
    
    arrows
            pauseOnHover:true, //Stop animation 
    
    while hovering
            manualAdvance:false, //Force manual 
    
    transitions
            captionOpacity:0.6, //Universal caption 
    
    opacity
            beforeChange: function(){},
            afterChange: function(){},
            slideshowEnd: function(){} //Triggers 
    
    after all slides have been shown
        });
             
    })
    </script>
    
    
    	<!-- menu area -->
    
    <script type="text/javascript">
    var isAnimating = false;
    $(function () {
          $('#dropMenu .level1 
    
    .submenu.submenu').hover(function() {
    if (!isAnimating) {
      $(this).find('ul.level2,.level3 li,.level4 
    
    li,.level5 li,.level6 li').stop(true, 
    
    true).fadeOut(1000);
      $(this).find('ul.level2,.level3 li,.level4 
    
    li,.level5 li,.level6 li').stop(true, 
    
    true).fadeIn(1000);
      isAnimating = true;
    }
    }, function() {
    $(this).find('ul.level2,.level3 li,.level4 
    
    li,.level5 li,.level6 li').stop(true, 
    
    true).fadeIn(1000);
    $(this).find('ul.level2,.level3 li,.level4 
    
    li,.level5 li,.level6 li').stop(true, 
    
    true).fadeOut(1000);
    isAnimating = false;
    });});
    
    </script>
    
    <div id="dropMenuWrapper">
      <div id="dropMenuWrapperb">
        <div id="dropMenuWrapperc">
          <div id="dropMenuWrapperd">
            <div id="dropMenu">
              <ul class="level1">
                
          
                  <li class="submenu"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=19">Corals</a><ul 
    
    class="level2"><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=15">Aussie 
    
    Acans</a></li><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=2">LPS</a></li><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=1">SPS</a></li><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=3">Zoanthids</a></li><
    
    li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=4">Softies</a></li><li
    
    >
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=26">Frag 
    
    Packs</a></li></ul></li><li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=16">Inverts</a></li><l
    
    i class="submenu"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=10">WYSIWYG</a><ul 
    
    class="level2"><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=24">Wysiwyg 
    
    Clams</a></li><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=22">Wysiwyg 
    
    Coral</a></li><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=23">Wysiwyg Maxi 
    
    Mini's</a></li></ul></li><li class="submenu"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=18">Dry Goods</a><ul 
    
    class="level2"><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=20">Lighting</a></li><
    
    li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=21">Wave 
    
    Makers</a></li><li>
        <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&amp;cPath=14">Gift 
    
    Certificates</a></li></ul></li>            </li>
    			
    		<!-- bof Hidden Container 2 -->
    		<li class="submenu">
    <div id="blockTwo">
    <a href="index.php?main_page=products_new" 
    
    onClick="showSlidingDiv2(); return false;">New 
    
    Additions</a>
    
    <div id="container2">
    <script type="text/javascript">
    //<![CDATA[
    function showSlidingDiv2(){
    $("#slidingDiv2").animate({"height": "toggle"}, 
    
    { duration: 1000 });
    }
    //]]>
    
    
    </script>
    
    
    
    
    <div id="slidingDiv2">
    <a href="#" onClick="showSlidingDiv2(); return 
    
    false;"><span id="close">Click to Return to 
    
    Menu</span></a>
    	<div id="indexDefaultMainContent" 
    
    class="content">
    <!-- bof: whats_new -->
    <div class="centerBoxWrapper" id="whatsNew">
    <h2 class="centerBoxHeading"><a 
    
    href="http://www.cultivatedreef.com">Continue 
    
    Shopping</a></h2>
        <div class="centerBoxContentsNew 
    
    centeredContent back" style="width:25%;"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=18_20&amp;produ
    
    cts_id=722"><img src="images/no_picture.gif" 
    
    alt="Maxspect 20.5 Inch Razor 16000k" title=" 
    
    Maxspect 20.5 Inch Razor 16000k " width="100" 
    
    height="80" /></a><br /><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=18_20&amp;produ
    
    cts_id=722">Maxspect 20.5 Inch Razor 
    
    16000k</a><br />$404.99</div>
        <div class="centerBoxContentsNew 
    
    centeredContent back" style="width:25%;"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=19_1&amp;produc
    
    ts_id=723"><img 
    
    src="bmz_cache/7/7688ad27448c630065bac4d7e6b23a9
    
    5.image.145x108.jpg" alt="ATL Ulitmate Rainbow 
    
    Montipora - Montipora Danae" title=" ATL 
    
    Ulitmate Rainbow Montipora - Montipora Danae " 
    
    width="145" height="108" /></a><br /><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=19_1&amp;produc
    
    ts_id=723">ATL Ulitmate Rainbow Montipora - 
    
    Montipora Danae</a><br /><span 
    
    class="normalprice">$60.00 </span><br /><span 
    
    class="productSalePrice">Sale:&nbsp;
    
    $54.00</span><span 
    
    class="productPriceDiscount"><br 
    
    />Save:&nbsp;10% off</span></div>
        <div class="centerBoxContentsNew 
    
    centeredContent back" style="width:25%;"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=19_1&amp;produc
    
    ts_id=724"><img src="images/no_picture.gif" 
    
    alt="Purple Haze Montipora - Montipora sp." 
    
    title=" Purple Haze Montipora - Montipora sp. " 
    
    width="100" height="80" /></a><br /><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=19_1&amp;produc
    
    ts_id=724">Purple Haze Montipora - Montipora 
    
    sp.</a><br /><span class="normalprice">$35.00 
    
    </span><br /><span 
    
    class="productSalePrice">Sale:&nbsp;
    
    $31.50</span><span 
    
    class="productPriceDiscount"><br 
    
    />Save:&nbsp;10% off</span></div>
        <div class="centerBoxContentsNew 
    
    centeredContent back" style="width:25%;"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=19_2&amp;produc
    
    ts_id=725"><img src="images/no_picture.gif" 
    
    alt="Red Goniopora - Goniopora sp." title=" Red 
    
    Goniopora - Goniopora sp. " width="100" 
    
    height="80" /></a><br /><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=product_info&amp;cPath=19_2&amp;produc
    
    ts_id=725">Red Goniopora - Goniopora sp.</a><br 
    
    /><span class="normalprice">$45.00 </span><br 
    
    /><span class="productSalePrice">Sale:&nbsp;
    
    $40.50</span><span 
    
    class="productPriceDiscount"><br 
    
    />Save:&nbsp;10% off</span></div>
    <br class="clearBoth" />
     
    </div>
    <!-- eof: whats_new --></div>
    		
        </div>
    	</div></div></li>
    <!-- eof Hidden Container 2 -->
    
    <!-- bof Hidden Container 1 -->
    		<li class="submenu">
    <div id="blockOne">
    <a href="index.php?main_page=specials" 
    
    onClick="showSlidingDiv1(); return false;">Coral 
    
    Sales</a>
    
    <div id="container1">
    <script type="text/javascript">
    //<![CDATA[
    function showSlidingDiv1(){
    $("#slidingDiv1").animate({"height": "toggle"}, 
    
    { duration: 1000 });
    }
    //]]>
    
    
    </script>
    
    
    
    
    <div id="slidingDiv1">
    <a href="#" onClick="showSlidingDiv1(); return 
    
    false;"><span id="close">Click to Return to 
    
    Menu</span></a>
    	<div id="indexDefaultMainContent" 
    
    class="content">
    <!-- bof: specials -->
    </div>
    		
        
    	</div></div></div></li>
    <!-- eof Hidden Container 1 -->
                <li class="submenu"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index">Information</a>
                  <ul class="level2">
    			                    
    
    <li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=shippinginfo">Shipping Info</a></li>
    							
    
    	                <li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=privacy">Privacy Policy</a></li>
    							
    
    	                <!--<li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=FILENAME_ABOUT_US">About 
    
    Us</a></li>-->
                                    <li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=site_map">Site Map</a></li>
                                                    
    
    <li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=gv_faq">Gift Certificate FAQ</a></li>
                                                    
    
    <li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=discount_coupon">Discount 
    
    Coupons</a></li>
                                    
                    <li><a href="index.php?
    
    main_page=page&id=10">Newsletters</a></li>
    				
    				<li><a 
    
    href="index.php?main_page=page&id=8">Stay Alive 
    
    Guarantee</a></li>
                                  </ul>
                </li>
                <li><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=contact_us">Contact Us</a></li>
            
              </ul>
            </div>
          </div>
        </div>
      </div>
    </div><!-- end dropMenuWrapper-->
    <div class="clearBoth"></div><div 
    
    class="clearBoth"></div>
    	
    <!--eof-branding display-->
    
    <!--eof-header logo and navigation display-->
    
    <!--bof-optional categories tabs navigation 
    
    display-->
    <!--eof-optional categories tabs navigation 
    
    display-->
    
    <!--bof-header ezpage links-->
    <!--eof-header ezpage links-->
    </div>
    
    <table width="100%" border="0" cellspacing="0" 
    
    cellpadding="0" id="contentMainWrapper">
      <tr>

  6. #6
    Join Date
    Nov 2011
    Posts
    72
    Plugin Contributions
    0

    Default Re: two rows in my header seemed to have vanished...

    and part 2 of 2:

    Code:
     <div id="bannerTwo" class="banners"><div 
    
    id="slider-wrapper">
    <div id="slider">
    
    <a href="our-satisfaction-guarantee-ezp-
    
    8.html"><img 
    
    src="includes/templates/cultivatedfrags/images/s
    
    lide/slide_bleedingheart.jpg" title="Stay Alive 
    
    Guarantee!" height="385" width="625"></a> 	 
    
     
    <a href="inverts-c-16.html"><img 
    
    src="includes/templates/cultivatedfrags/images/s
    
    lide/slide_rainbowmaxi.jpg" title="$24 
    
    Cultivated Maxi Mini's!"></a> 	  
    <a href="index.php?
    
    main_page=display_all_testimonials"><img 
    
    src="includes/templates/cultivatedfrags/images/s
    
    lide/slide_warcoral.jpg" title="See what others 
    
    have said about our corals!"></a>
    <a href="shippinginfo.html"><img 
    
    src="includes/templates/cultivatedfrags/images/s
    
    lide/slide_watermelon.jpg" title="$19 Shipping 
    
    Northeast, $34 Country Wide!
    "></a>
    
    <a href="index.php?main_page=specials"><img 
    
    src="includes/templates/cultivatedfrags/images/s
    
    lide/slide_sales.jpg" title="Coral Sales, Every 
    
    Month!
    "></a>
    </div></div>
    
    
    <div id="goal">
    <p class="goalHead"><span>Our Goal</span></p>
    <p>&nbsp;&nbsp;&nbsp;Being hobbyists ourselves, 
    
    we know the importance of quality livestock and 
    
    excellent customer service.  Our goal is to 
    
    provide you with both along with the most 
    
    competitive pricing on the web.  It is our hope 
    
    that every new customer becomes a repeat 
    
    customer.</p>
    <p>&nbsp;&nbsp;&nbsp;We specialize in selling 
    
    tank raised coral.  Within our website, you will 
    
    find a great number of farmed coral frags 
    
    ranging from common beginner coral to exotic and 
    
    rare collector coral.  We also try to keep a 
    
    beautiful assortment of wild pieces which are 
    
    typically found in our WYSIWYG category.</p>
    <p>&nbsp;&nbsp;&nbsp;Check our site regularly as 
    
    both farmed frags and wild pieces are constantly 
    
    being added.  And be sure to check out our coral 
    
    sales as specials are always changing.</p>
    <p>Regards,<br />
    The Cultivated Reef Team</p>
    </div></div>
            <div id="headBanner"><img height="36" 
    
    width="1000" alt="Welcome" 
    
    src="images/welcometogregs3.gif" />
    </div>
     <!-- bof  breadcrumb -->
    <!-- eof breadcrumb -->
     <td id="navColumnOne" class="columnLeft" 
    
    style="width: 150px">
    
    <div id="navColumnOneWrapper" style="width: 
    
    195px"><form name="quick_find_header" 
    
    action="http://cultivatedreef.com/index.php?
    
    main_page=advanced_search_result" 
    
    method="get"><input type="hidden" 
    
    name="main_page" value="advanced_search_result" 
    
    /><input type="hidden" 
    
    name="search_in_description" value="1" /><input 
    
    type="text" name="keyword" size="6" 
    
    maxlength="30" style="width: 100px; background-
    
    color:#214083; color:#FFF" value="Search 
    
    Livestock" onfocus="if (this.value == 'Search 
    
    Livestock') this.value = '';" onblur="if 
    
    (this.value == '') this.value = 'Search 
    
    Livestock';" />&nbsp;<input type="submit" 
    
    value="Search" style="width: 55px; background-
    
    color:#214083; color:#FFF" /></form><!--// bof: 
    
    testimonials_manager //-->
    <div class="leftBoxContainer" id="testimonials-
    
    manager" style="width: 195px">
    <h3 class="leftBoxHeading" id="testimonials-
    
    managerHeading">Testimonials</h3>
    <div id="testimonials-managerContent" 
    
    class="sideBoxContent"><b><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=testimonials_manager&amp;testimonials_
    
    id=8">A+ Rating</a></b><div 
    
    class="testimonial"><p>I recently placed an 
    
    order with CultivatedReef.com, and I am 
    
    really...<br /><span><strong><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=testimonials_manager&amp;testimonials_
    
    id=8">Read More</a></strong></span></p></div><hr 
    
    class="catBoxDivider" /><b><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=testimonials_manager&amp;testimonials_
    
    id=12">Amazed @ Quality and Service</a></b><div 
    
    class="testimonial"><p>I am a skeptical person 
    
    when it comes to purchasing livestock online. 
    
    I...<br /><span><strong><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=testimonials_manager&amp;testimonials_
    
    id=12">Read 
    
    More</a></strong></span></p></div><hr 
    
    class="catBoxDivider" /><div 
    
    class="bettertestimonial"><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=display_all_testimonials">View All 
    
    Testimonials</a></div><div 
    
    class="bettertestimonial"><a 
    
    href="https://cultivatedreef.com/index.php?
    
    main_page=testimonials_add">Add A 
    
    Testimonial</a></div></div></div>
    <!--// eof: testimonials_manager //-->
    
    <!--// bof: blanksidebox2 //-->
    <div class="leftBoxContainer" id="blanksidebox2" 
    
    style="width: 195px">
    <h3 class="leftBoxHeading" 
    
    id="blanksidebox2Heading">Secure Merchant</h3>
    <div id="blanksidebox2Content" 
    
    class="sideBoxContent2"><center><div 
    
    class="AuthorizeNetSeal"> <script 
    
    type="text/javascript" language="javascript">var 
    
    ANS_customer_id="3fe63dcc-9eff-4a2f-8b97-
    
    7a5c7e7ccf23";</script> <script 
    
    type="text/javascript" language="javascript" 
    
    src="//verify.authorize.net/anetseal/seal.js" 
    
    ></script> <a href="http://www.authorize.net/" 
    
    id="AuthorizeNetText" target="_blank">Accept 
    
    Credit Cards Online</a> </div>
    </center></div></div>
    <!--// eof: blanksidebox2 //-->
    
    <!--// bof: blanksidebox3 //-->
    <div class="leftBoxContainer" id="blanksidebox3" 
    
    style="width: 195px">
    <h3 class="leftBoxHeading" 
    
    id="blanksidebox3Heading">We Proudly Accept</h3>
    <div id="blanksidebox3Content" 
    
    class="sideBoxContent"><img src="images/Credit-
    
    Card-Logos.jpg" width="140" height="90" 
    
    alt="Accepted Merchants" /></div></div>
    <!--// eof: blanksidebox3 //-->
    
    </div></td>
        <td valign="top">
    
    
    
    <!-- bof upload alerts -->
    <!-- eof upload alerts -->
    
    <div class="centerColumn" id="indexDefault">
    
    <!-- deprecated - to use uncomment this section
    <div id="" class="content">This is the main 
    
    define statement for the page for english when 
    
    no template defined file exists. It is located 
    
    in: 
    
    <strong>/includes/languages/english/index.php</s
    
    trong></div>
    -->
    
    <!-- deprecated - to use uncomment this section
    <div id="" class="content">Define your main 
    
    Index page copy here.</div>
    -->
    
    <div id="indexDefaultMainContent" 
    
    class="content"><div id="indexheader">
    <h1><strong>Featured Coral Frags</strong> - Free 
    
    Shipping on all orders over $250 nation wide!
    
    </h1>
    </div>
    <div id="indexHome">
    <div class="indexproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=15"><strong>Aussie 
    
    Acans</strong></a></em><a href="/index.php?
    
    main_page=index&amp;cPath=15"><img border="0" 
    
    src="images/indexproducts/aussieacans.jpg" 
    
    alt="Aussie Acans" /></a></div>
    <div class="centerproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=1"><strong>SPS</strong
    
    ></a></em><a href="/index.php?
    
    main_page=index&amp;cPath=1"><img border="0" 
    
    src="images/indexproducts/SPS-Coral.jpg" 
    
    alt="LPS" /></a></div>
    <div class="centerproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=2"><strong>LPS</strong
    
    ></a></em><a href="/index.php?
    
    main_page=index&amp;cPath=2"><img border="0" 
    
    src="images/indexproducts/warandpeace.jpg" 
    
    alt="LPS Coral" /></a></div>
    <div class="indexproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=10"><strong>WYSIWYG</s
    
    trong></a></em><a href="/index.php?
    
    main_page=index&amp;cPath=10"><img border="0" 
    
    src="images/indexproducts/redwatermelon.jpg" 
    
    alt="What You See Is What You Get" /></a></div>
    <div class="centerproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=3"><strong>Zoanthid 
    
    &amp; Palythoa</strong></a></em><a 
    
    href="/index.php?
    
    main_page=index&amp;cPath=3"><img border="0" 
    
    src="images/indexproducts/Zoanthid&amp;Palythoa.
    
    jpg" alt="Zoanthid &amp; Palythoa" /></a></div>
    <div class="centerproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=4"><strong>Softies</st
    
    rong></a></em><a href="/index.php?
    
    main_page=index&amp;cPath=4"><img border="0" 
    
    alt="Softies" 
    
    src="images/indexproducts/softcoral.jpg" 
    
    /></a></div>
    <div class="indexproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=16"><strong>Inverts</s
    
    trong></a></em><a href="/index.php?
    
    main_page=index&amp;cPath=16"><img border="0" 
    
    src="images/indexproducts/red mini mini.jpg" 
    
    alt="Inverts" /></a></div>
    <div class="centerproducts"><em 
    
    class="indexcategorylinks"><a href="/index.php?
    
    main_page=index&amp;cPath=14"><strong>Frag 
    
    Packs</strong></a></em><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&cPath=26"><img border="0" 
    
    src="images/indexproducts/frag_packs4.jpg" 
    
    alt="Frag Packs" /></a></div>
    <div class="centerproducts"><em 
    
    class="indexcategorylinks"><a href="/dry-goods-
    
    ezp-11.html"><strong>Dry 
    
    Goods</strong></a></em><a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index&cPath=18"><img border="0" 
    
    src="images/indexproducts/coming_soon.jpg" 
    
    alt="Dry Goods" /></a></div>
    </div></div>
    
    
    
    
    
    
    
    </div>
    </td>
    
      </tr>
    </table>
    
    
    
    <!--bof-navigation display -->
    <style type="text/css">
    <!--
    .style3 {color: #1385b7; font-weight: bold; 
    
    font-size: 1.1em; }
    .style4 {font-size: small}
    -->
    </style>
    <div id="navSuppWrapper">
    <div id="navSupp">
    <ul>
    <li><a 
    
    href="http://cultivatedreef.com/">Home</a></li>
    </ul>
    </div>
    </div>
    <!--eof-navigation display -->
    
    <!--bof-ip address display -->
    <!--eof-ip address display -->
    
    <!--bof-banner #5 display -->
    <!--eof-banner #5 display -->
    <table width="706" border="0" align="center">
      <tr>
        <td width="200" align="center"><span 
    
    class="style3">Customer Service</span>
          <div align="center"><a href="/index.php?
    
    main_page=contact_us">Contact us</a><br />
            <a href="/index.php?
    
    main_page=shippinginfo">Shipping 
    
    Information</a></div></td>
        <td width="200" style="border-left:#1385b7 
    
    solid 1px" align="center"><span 
    
    class="style3">About us</span>
          <div align="center"><a href="/index.php?
    
    main_page=page&id=2">About Cultivated 
    
    Reef</a><br />
        <a href="index.php?main_page=site_map">Site 
    
    map</a></div></td>
        <td width="200" style="border-left:#1385b7 
    
    solid 1px" align="center"><span 
    
    class="style3">Privacy &amp; Security</span>
          <div align="center"><a href="index.php?
    
    main_page=page&id=7">Secure and Safe 
    
    Shopping</a><br />
            <a href="index.php?
    
    main_page=page&id=8">Stay Alive 
    
    Guarantee</a></div></td>
      </tr>
    </table>
    <table width="562" border="0" align="center">
      <tr>
        <td align="center"><br /><img 
    
    src="images/payment.gif" width="281" height="40" 
    
    align="middle" /><br /><span 
    
    id="siteseal"><script type="text/javascript" 
    
    src="https://seal.godaddy.com/getSeal?
    
    sealID=2FxeXEaNt8Bxp73yc0fy3REQj5Xq1swdLsqDQFnwn
    
    EMVYVjh8sHn75S"></script><br/><a style="font-
    
    family: arial; font-size: 9px" 
    
    href="https://certs.godaddy.com/Repository.go" 
    
    target="_blank">Go Daddy</a></span></td>
      </tr>
    </table>
    <br />
    
    <br />
    <!--bof- site copyright display -->
    <div id="siteinfoLegal" 
    
    class="legalCopyright">Copyright &copy; 2012 <a 
    
    href="http://cultivatedreef.com/index.php?
    
    main_page=index" target="_blank">Cultivated 
    
    Reef</a>. Powered by <a href="http://www.zen-
    
    cart.com" target="_blank">Zen Cart</a>.</div>
    <!--eof- site copyright display -->
    
    
    </div>
    <!--bof- parse time display -->
    <!--eof- parse time display -->
    <!--bof- banner #6 display -->
    <!--eof- banner #6 display --><br />
    <script type="text/javascript">
    var gaJsHost = (("https:" == 
    
    document.location.protocol) ? "https://ssl." : 
    
    "http://www.");
    document.write(unescape("%3Cscript src='" + 
    
    gaJsHost + "google-analytics.com/ga.js' 
    
    type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    var pageTracker = _gat._getTracker("UA-7249259-
    
    1");
    pageTracker._initData();
    pageTracker._trackPageview();
    </script>
    </body>
    
    
    </html>

 

 

Similar Threads

  1. v150 Nav Bar under header is too narrow for two rows of Categories
    By CultureClick in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 10 Jun 2012, 06:13 AM
  2. Sideboxes have vanished on Front Page
    By ShawnBeta in forum General Questions
    Replies: 3
    Last Post: 8 Sep 2011, 05:07 PM
  3. Images have vanished
    By pb4 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 9 Feb 2009, 05:44 PM
  4. Page Titles Have Vanished
    By indigo-island in forum General Questions
    Replies: 10
    Last Post: 6 Mar 2008, 12:13 AM
  5. All images have vanished.
    By Vood in forum Installing on a Linux/Unix Server
    Replies: 2
    Last Post: 4 Nov 2007, 07:25 PM

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