Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Sep 2011
    Posts
    7
    Plugin Contributions
    0

    Default Removing the pipe separator from the HOME LOG IN header in my TM template

    http://img855.imageshack.us/img855/4255/annoyingv.png

    I would like to remove the last pipe symbol from my header, as shown in the picture above. How can I do it? Please advise...

    HOME | LOG IN | is annoying, that last one isn't needed.

    Thanks in advance for any help with this. Here is the content of my tpl_header.php file



    Code:
    		<?php #HEADER LINKS START ?>
                    
                    <li class="first"><a href="<?php echo HTTP_SERVER . DIR_WS_CATALOG ?>"><?php echo HEADER_TITLE_CATALOG; ?></a></li>
                    
                <?php if ($_SESSION['customer_id']) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
                    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li> 
                <?php
                      } else {
                        if (STORE_STATUS == '0') {
                ?>
    
                    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>  
                <?php } } ?>  
                
                <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
                    <li class="last"><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
                <?php } ?>
                        
            <?php #HEADER LINKS END ?>

  2. #2
    Join Date
    May 2010
    Location
    WA State
    Posts
    1,678
    Plugin Contributions
    3

    Default Re: Removing the pipe separator from the HOME LOG IN header

    If you remove that one it'll look fine when the user isn't logged in, but will look screwy when they are because the other links will appear.

  3. #3
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    As we can't see your actual site, this may not be the case, but there could be a border declaration for the style element governing the header menu, in the stylesheet.css

  4. #4
    Join Date
    Sep 2011
    Posts
    7
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    Yeah, I'd like to set it so that each link is separated by a pipe regardless of whether the user is logged in or not. Each link should be followed by a pipe except for the last link.

    So far I added a non-breaking space surrounded by link tags before the first link, so at least it evens out. Ideally I don't want a pipe before the first or last link... if anyone has any ideas on how to achieve this I'd be forever grateful.

    I've spent about 3 hours on this and just can't figure it out, the code looks clean to me. The last link (which appears when a user has something in their cart) has id=last but still, the pipe shows whether or no their is something in the cart. I wonder if I need to make some kind of exception using PHP, but I don't know PHP at all haha

  5. #5
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    Glenn Herbert is the guy you need here. He knows CSS like the back of his hand.

  6. #6
    Join Date
    Sep 2011
    Posts
    7
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    Here is the full content of tpl_header.php

    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 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: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
     */
    ?>
    <?php
    
    	
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    ?>
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    <?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '15');?><br />
    <div class="main_t">
      <div class="header_t">
        <div class="inner1">
          <div class="inner2">
            <div class="inner3">
              <div class="inner4">
                <div class="inner5">
                  <div class="inner6">
                    <div class="inner7">
                      <div class="inner8">
                        <div class="row1">
                          <div class="inrow1">
                            <div class="inrow2">
                              <div class="col1">
                                <div class="indent"><a href="<?php echo zen_href_link(FILENAME_DEFAULT);?>"><?php echo zen_image(DIR_WS_TEMPLATE.'images/logo.gif'); ?></a><br />
                                </div>
                              </div>
                              <div class="col2">
                                <div class="col1">
                                  <div class="col1"><?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '28');?><br />
                                  </div>
                                  <div class="col2"><?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '28');?><br />
                                  
    
                                    
                                  </div>
                                  <div class="clear"></div>
                                </div>
                                <div class="col2"><?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '28');?><br />
    
                                  
                                </div>
                                <div class="clear"></div>
                              </div>
                              <div class="clear"></div>
                            </div>
                          </div>
                        </div>
                        <?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '3');?><br />
                        <div class="row2 user_menu">
                        
    	<?php #HEADER START ?>
            <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
                <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
            <?php } ?>
        <?php #HEADER END ?>
                          
                          <div class="clear"></div>
                        </div>
                        <?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '3');?><br />
                        <div class="row3">
                          <div class="inrow1">
                            <div class="inrow2 user_menu2"><?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '5');?><br />
                              <table style="width:auto; margin:auto" align="center">
                                <tr>
                                  <td>
                                    <ul>
                                    
    		<?php #HEADER LINKS START ?>
    
                 <li>&nbsp;</li>
    
                <?php if ($_SESSION['customer_id']) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li> 
                    <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
                <?php
                      } else {
                        if (STORE_STATUS == '0') {
                ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>  
                    <li><a href="<?php echo zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CREATE_ACCOUNT; ?></a></li>  
                <?php } } ?>  
                
                <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
                    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
                <?php } ?>
    
                    <li class="last"><b><a href="<?php echo zen_href_link(FILENAME_TRACKING, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_TRACKING; ?></a></b></li>
    
        
            <?php #HEADER LINKS END ?>   
    </ul>
                                  </td>
                                </tr>
                              </table>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <?php echo zen_draw_separator($image = 'pixel_trans.gif', '1', '3');?><br />
      <div class="content_t">
    
    
    
        
    	
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
        
    <?php } ?>

  7. #7
    Join Date
    Sep 2011
    Posts
    7
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    And the content of each style sheet...

    Can anyone please tell me what to do? The worst thing is I'm sure it's something so very simple, like changing a 1 to a 0 or something like that

    printstylesheet.css
    Code:
    /**
     * CSS Stylesheet for printing
     *
     * @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: print_stylesheet.css 3150 2006-03-10 19:03:51Z birdbrain $
    */
    body {background-color: #ffffff;}
    #contentMainWrapper {background-color: #ffffff;}
    .messageStackWarning, #navMainWrapper, .navMainSearch, #navCatTabsWrapper, #navEZPagesTop, 
    #navColumnOne.columnLeft, #navColumnTwo.columnRight, 
    #navSupp, .banners, #navBreadCrumb, .buttonRow { display: none;}
    
    
    /* Other relevant properties for paged media:
    - page-break-before
    - page-break-after
    - page-break-inside
    - orphans
    - widows
    */
    stylesheet.css
    Code:
    #upcomingProductsTable td{padding:5px;}
    #upcomingProductsTable th{padding:5px;}
    
    #categoryImgListing {
    float:left;
    margin-right:15px;
    padding:0;
    }
    
    #indexProductListCatDescription, #categoryDescription { display:block; overflow:hidden; min-height:140px; height:auto !important; height:140px; color:#434342; font-family:Tahoma; line-height:14px; font-size:11px;}
    
    
    CODE {
            font-family:tahoma; font-size:11px; line-height:normal; color:#707070;
            }
    
    FORM, SELECT, INPUT {
           
            }
    FORM	{margin:0px; padding:0px;}
    
    TEXTAREA {
            width:375px;
            }
    
    input:focus, select:focus, textarea:focus {
    
            }
    		
    		
    FIELDSET#contactUsForm{padding:15px 0 15px 15px; width:91%;}
    #loginDefault FIELDSET{padding:15px;}
    #gvFaqDefault FIELDSET{padding:15px;}
    
    .ccinfo .inputLabelPayment {display:block; width:80%; padding:5px 0 5px 0;}
    
    .wrapperAttribsOptions .back{display:block !important; clear:both;}
    		
    		
    #ship-item-item{margin-right:7px;}		
    		
    
    FIELDSET {
            padding: 0.5em;
            margin: 0.5em 0em;
    		border:1px solid #777777;
            }
    
    LEGEND {
            font-weight: bold; padding:0 5px; color:#000000;
            }
    
    LABEL, h4.optionName {
            
            }
    
    LABEL.checkboxLabel, LABEL.radioButtonLabel {
    
    	margin-left:10px;
    	margin-right:15px;
    
            }
    		
    #checkoutShipping input{vertical-align:middle;}
    
    .ccinfo label{padding-bottom:5px;}		
    .ccinfo label{ margin:0 !important;}	
    #pmt-moneyorder{margin-top:0px !important;}
    		
    		
    
    #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
            float: left;
            }
    		
    		
    #contactUsForm .inputLabel {}
    #loginDefault .inputLabel {}
    #loginDefault #newsletter-checkbox{margin:15px 5px 15px 0; vertical-align:middle;}
    		
    
    LABEL.inputLabel {
            width: 11em;
    		padding-right:10px;
    		padding-bottom:3px;
    		float:left;		
            }
    #indexProductList LABEL.inputLabel{display:block; width:90%;}
    
    LABEL.inputLabelPayment {
            width: 15em;
            float: left;
            }
    
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel  {
            width: 12em;
            float: left;
            }
    
    P, ADDRESS {
            padding: 0 0 2px 0;
            }
    
    ADDRESS {
            font-style: normal;
            }
    
    .clearBoth {
            clear: both; font-size:2px; line-height:2px;
            }
    
    HR {
    	border-color:#FFFFFF;
    	border:none;
    	display:block;
    	margin:2px 0px;
    }
    
    /*warnings, errors, messages*/
    .messageStackWarning, .messageStackError, .messageStackSuccess, .messageStackCaution {
            line-min-height: 1.8em;
            padding: 0.2em;
            
            }
    
    .messageStackWarning, .messageStackError {
            color:#FF0000; 
            }
    
    .messageStackSuccess {
            background-color: #F1F6E6;
            color:#707070;
            }
    
    .messageStackCaution {
            background-color: #FFFF66;
            color:#707070;
            }
    
    /*wrappers - page or section containers*/
    #mainWrapper {
            text-align: left;
            vertical-align: top;
            }
    
    
    
    #tagline {
            color:#716d7a; margin-top:10px;
            font-size: 12px;
            text-align : center;
            vertical-align: middle;
            }
    
    #sendSpendWrapper {
            border: 1px solid #cacaca;
            float: right;
            margin: 0em 0em 1em 1em;
            }
    
    .floatingBox, #accountLinksWrapper, #sendSpendWrapper, #checkoutShipto, #checkoutBillto, #navEZPagesTOCWrapper {
            margin: 0;
            }
    .floatingBox a {}
    
    ul{list-style-type:circle; list-style-position:inside;}
    #productDetailsList li a{}
    #productDetailsList li {}
    .wrapperAttribsOptions { display:block;
            margin: 0.3em 0em;
            }
    
    /*navigation*/
    #sorter {margin:0 10px 0 29px;}
    .navSplitPagesResult {margin-top:13px; margin-bottom:18px; padding-left:1px; margin-right:0; font-size:11px; color:#434342 }
    .navSplitPagesResult a {color:#ff5304;font-weight:normal;}
    .navSplitPagesLinks {margin-top:13px; margin-bottom:18px; margin-left:0; padding-right:1px; font-size:11px; color:#434342}
    .navSplitPagesLinks a {color:#ff5304;font-weight:normal;}
    .navNextPrevCounter {
            margin: 0em;
            font-size: 10px;
            }
    .navNextPrevList {
            display: inline;
            white-space: nowrap;
            margin:0px 2px 3px 0px;
            list-style-type: none;
            }
    .navNextPrevWrapper{
    		margin-bottom:2px;
    		}
    
    #navMainWrapper, #navSuppWrapper, #navCatTabsWrapper {
           
            }
    
    #navMain ul, #navSupp ul, #navCatTabs ul  {
            margin: 0;
            padding:  0.5em 0em;
            list-style-type: none;
            text-align: center;
            line-min-height: 1.5em;
            }
    
    #navMain ul li, #navSupp ul li, #navCatTabs ul li {
           
            }
    
    #navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {
          
            }
    
    #navEZPagesTOCWrapper {
            font-weight: bold; float:inherit;
            min-height: 1%;
    		padding:0.5em;
    		margin:5px 0px;
            border: 1px solid #b0d3f0;
            }
    
    #navEZPagesTOC ul {
            margin: 0;
            padding:  0.5em 0em;
            list-style-type: none;
            line-min-height: 1.5em;
            }
    
    #navEZPagesTOC ul li {
            white-space: nowrap;
            }
    
    #navEZPagesTOC ul li a {
            padding: 0em 0.5em;
            margin: 0;
            }
    
    #navMainSearch, #navCategoryIcon {
            margin:5px 5px 0 0px;
            }
    
    
    
    #navEZPagesTop {
            
            }
    
    
    /*The main content classes*/
    #contentColumnMain, #navColumnOne, #navColumnTwo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .alert {
            vertical-align: top;
            }
    
    #productDescription, .shippingEstimatorWrapper {
    font-size:11px; font-family:Tahoma; color:#434342; line-height:16px;
            }
    .content	{
    		margin:0;
    		}
    
    .alert {
            color:#FF0000;
            margin-left: 0.5em;
    		margin-right:5px;
            }
    .advisory {}
    .important {
            font-weight: bold;
    		margin:5px;
            }
    .notice {}
    .rating{}
    .gvBal {
            float: right;
            }
    #bannerOne, #bannerTwo,  #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix {
            padding: 0em;
            }
    
    .smallText, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP {
            font-size: 0.9em;
            }
    
    /*Shopping Cart Display*/
    
    .tableHeading TH {
    
            }
    
    .tableHeading, #cartSubTotal { 
          
    	  }
    
    
    .tableRow, .tableHeading, #cartSubTotal {
            min-height: 2.2em;
            }
    
    .cartUnitDisplay, .cartTotalDisplay {
            text-align: right;
            padding-right: 0.2em;
            }
    
    #scUpdateQuantity {
            width: 2em;
            }
    
    .cartQuantity {
            width: 4.7em;
            }
    
    .cartNewItem {
            color:#707070;
            position: relative;  /*do not remove-fixes stupid IEbug*/
            }
    
    .cartOldItem {
            /*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;
    }
    
    
    #cartBoxListWrapper ul, #ezPageBoxList ul {
            list-style-type: none;
    		list-style-position:outside
            }
    
    #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*/
    
    
    .categoryIcon {}
    #cartImage {
            margin: 0.5em 1em;
            }
    
    /*Attributes*/
    .attribImg {
            width: 20%;
            margin: 0.3em 0em;
    }
    
    .attributesComments {}
    
    /*list box contents*/
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
    
            }
    
    /*sideboxes*/
    .columnLeft {}
    .columnRight {}
    
    
    
    
    
    
    .sideBoxContent {
            }
    
    
    
    .rightBoxHeading {
            margin: 0em;
            background-color: #663366;
            padding: 0.2em 0em;
            }
    
    h3.leftBoxHeading a:hover {
            color: #FFFF33;
            text-decoration: none;
            } 
    
    h3.rightBoxHeading a:hover {
            color: #FF0000;
            text-decoration: none;
            }
    
    .rightBoxContent {
            margin-bottom: 1em;
            }
    
    .centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo,  #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading,.rightBoxHeading, .productListing-data, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg {
    
           width:auto;
    	   color:#78838f;
    	    font-size:10px;
    		font-family:Tahoma;
            }
    		
    		
    		
    		
    .categoryListBoxContents a {text-decoration:none; color:#C00505; text-transform:uppercase; text-align:center;}
    
    .cartTotalsDisplay{
    
    }
    
    
    #bannerboxHeading {
            background-color: #0000CC;
    }
    
    #upProductsHeading {
            text-align: left;
            }
    
    #upDateHeading {
            text-align: right;
            }
    
    /*misc*/
    .back {
            float: left;
            }
    
    .forward {
            float: right;
            }
    
    .bold {
            font-weight: bold;
            }
    
    .rowOdd {
            
            min-height: 1.5em;
            vertical-align: top;
            }
    
    .rowEven { padding:5px 5px 5px 5px;
            
            min-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 {
            min-height: 2em;
            }
    
    #siteMapList {
            width: 90%;
            float: right;
            }
    
    .ratingRow {
            margin: 1em 0em 1.5em 0em;
            }
    
    LABEL#textAreaReviews {
            font-weight: normal;
            }
    
    
    /*!!!!!!!!!*/
    #gvFaqDefaultMainContent{margin:10px 15px 0 15px;}
    #gvFaqDefaultContent{margin:0 5px 0 5px;}
    #reviewsDefaultNoReviews{margin:0 5px 5px 5px;}
    #createAcctSuccessMainContent{ margin:5px;}
    
    
    .ee	{text-decoration:line-through;}
    
    
    
    
    
    
    /*  --------------- PRICES ---------------  */
    
    .normalprice, .productSpecialPriceSale {
    
    font-size:14px;
    color:#777777;
    font-weight:bold;
    line-height:normal;
     text-decoration:line-through;
            
    }
    		
    .normalprice {color:#ff5304; font-size:13px; line-height:24px; text-decoration:line-through; font-weight:normal;}
    .productSpecialPrice, .productSalePrice, .productSpecialPriceSale {color:#000000; font-size:16px; line-height:24px; font-weight:bold; font-family:Tahoma}
    
    .productListing-data .normalprice {color:#ff5304; font-size:13px; line-height:24px; text-decoration:line-through; font-weight:normal; font-family:Tahoma}
    
    
    
    
    
    
    
    
    .productSpecialPriceSale {
    	text-decoration:line-through;
    }
    		
    .productPriceDiscount {color:#373737; font-size:12px;}
    
    
    
    
    /*  --------------- BUTTONS ---------------  */
    
    .buttonRow, .buttonRow2 {padding:7px 2px 7px 0;}
    
    .buttonRow input, .buttonRow2 input, .buttonRow3 input {border:none; padding:0; background:none;}
    
    
    
    
    #accountHistoryDefault .buttonRow, .buttonRow2 {
    float:left !important;
    overflow:hidden;
    margin:-7px 0 15px 0;
    position:absolute;
    }
    
    
    
    #tellAFriendDefault input{margin:2px 0 2px 0 !important;}
    #tellAFriendDefault textarea{margin:2px 0 2px 0 !important;}
    #tellAFriendDefault label{margin:2px 0 2px 0 !important;}

  8. #8
    Join Date
    Sep 2011
    Posts
    7
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    stylesheetboxes.css
    Code:
    .boxname {text-align:center;}
    .boxname a{color:#13140d; font-family:Arial, Helvetica, sans-serif; font-size:13px; font-weight:bold; text-decoration:none;}
    .boxname a:hover{text-decoration:underline;}
    
    .boxprice{color:#111111; font-size:13px; line-height:16px; text-align:center; font-weight:bold;}
    .tellafr_input{width:80%;}
    
    #lahguages #languagesContent{text-align:center;}
    
    .box1_body{color:#333333; font-size:11px;}
    .box1_body a{color:#333333; font-size:11px; font-weight:normal; text-decoration:underline;}
    .box1_body a:hover{text-decoration:none;}
    
    .box1_body b a{color:#ff5304; font-size:16px; line-height:21px; font-weight:bold; text-decoration:none; text-transform:none; font-family:Tahoma;}
    .box1_body b a:hover{text-decoration:underline;}
    
    
    
    #orderhistoryContent a img{ margin-bottom:15px;}
    #orderhistory .box1_body a img{ margin-bottom:0;}
    
    /* ----------------------- BOXES ------------------------- */
    .box_head{font-family:Tahoma;color:#030303; font-size:12px; text-transform:capitalize; font-weight:bold; width:100%;}
    .box_head .innerbox1{ background:url(../images/box_head_bg7.gif) repeat-y left top #f6f6f6; width:100%;}
    .box_head .innerbox2{ width:100%; background:url(../images/box_head_bg5.gif) repeat-x left bottom;}
    .box_head .innerbox3{ background:url(../images/box_head_bg2.gif) repeat-x left top; width:100%;}
    .box_head .innerbox4{ width:100%; background:url(../images/box_head_bg8.gif) repeat-y right top;}
    .box_head .innerbox5{ background:url(../images/box_head_bg1.gif) no-repeat left top; width:100%;}
    .box_head .innerbox6{ background:url(../images/box_head_bg4.gif) no-repeat left bottom; width:100%;}
    .box_head .innerbox7{ background:url(../images/box_head_bg3.gif) no-repeat right top; width:100%;}
    .box_head .innerbox8{ background:url(../images/box_head_bg6.gif) no-repeat right bottom; width:100%;}
    .box_head .innerbox9{ padding:9px 5px 11px 29px;}
    
    
    
    
    
    .box_head a{text-decoration:none; color:#030303}
    .box_head a:hover{ text-decoration:underline}
    
    
    
    .box{margin-bottom:3px; width:100%;}
    .box .box_inner1{ background:#ffffff;}
    .box .background-top-4{ width:100%; background:url(../images/box5_side.gif) repeat-y left top;}
    .box .background-top-left-4{width:100%; background:url(../images/box5_side.gif) repeat-y right top;}
    .box .background-top-right-4{width:100%; background:url(../images/box5_side.gif) repeat-x left bottom;}
    .box .background-bottom-left-4{width:100%; background:none}
    .box .background-bottom-right-4{width:100%; background:none;}
    .box .background-bottom-right-44{width:100%; background:url(../images/box5_bg4.gif) no-repeat left bottom;}
    .box .box-indent{padding:21px 32px 28px 30px; overflow:hidden; background:url(../images/box5_bg6.gif) no-repeat right bottom;}
    
    
    
    
    
    
    
    
    
    
    
    
    
    .box select{width:90%;}
    
    .box_body {margin:0; color:#212121; font-family:tahoma; font-family:Arial, Helvetica, sans-serif; font-size:12px;}
    .box_body a {color:#212121; text-decoration:none;}
    .box_body a:hover {text-decoration:underline;}
    
    .box_body ul {margin:0; padding:0; list-style:none;}
    .box_body ul li {padding:6px 0 4px 27px;}
    .box_body ul li a {text-decoration:underline;  padding-left:12px;}
    .box_body ul li a:hover {text-decoration:none;}
    
    .box_body ol {margin:0; padding:0; list-style:none;}
    .box_body ol li {padding:6px 0 2px 17px;}
    .box_body ol li a {text-decoration:underline;  padding-left:10px;}
    .box_body ol li a:hover {text-decoration:none;}
    
    /* ----------------------- LISTING BOXES ------------------------- */
    
    #categories {}
    #categories ul{list-style:none; list-style-position:outside; font-family:Tahoma}
    #categories li{color:#696969; font-size:11px; line-height:16px; background:url(../images/list_background1x.gif) no-repeat 0 12px; padding-left:0; text-decoration:none; font-weight:normal;}
    #categories li.category-products{color:#696969; font-size:11px; line-height:16px;  background:url(../images/list_background1x.gif) no-repeat 16px 12px; text-decoration:none; font-weight:normal; padding:2px 0 2px 0;}
    #categories li span.top-span{display:block; padding:4px 0 5px 0; background:url(../images/list_background.gif) repeat-x left top;}
    #categories li.category-products span.top-span{display:block; padding:2px 0 2px 10px; }
    #categories li.category-top_un span.top-span{display:block; background:url(../images/spacer.gif) no-repeat left top;}
    #categories li a{color:#696969; font-size:11px; line-height:16px; text-decoration:none; font-weight:normal; padding-left:0; display:block;}
    #categories li a:hover{text-decoration:none; color:#ff5304; font-weight:bold}
    
    
    
    
    #categories .box_body_2 ul{list-style:none; list-style-position:outside; font-family:Tahoma}
    #categories .box_body_2 li{color:#434342; font-size:11px; line-height:20px; background:none; padding-left:0; text-decoration:none; font-weight:bold;}
    #categories .box_body_2 li a{color:#434342; font-size:11px; line-height:20px; text-decoration:none; font-weight:bold; padding-left:0; display:inline}
    #categories .box_body_2 li a:hover{text-decoration:underline}
    
    
    
    #information {}
    #information ul{list-style:none; list-style-position:outside; font-family:Arial, Helvetica, sans-serif}
    #information li{color:#696969; font-size:11px; line-height:16px; background:url(../images/list_background1.gif) no-repeat 0px 6px; padding-left:16px; font-weight:normal;}
    #information li span.top-span{display:block; padding:1px 0 7px 0; background:url(../images/spacer.gif);}
    #information li a{color:#696969; font-size:11px; line-height:16px; text-decoration:none; font-weight:normal; padding-left:0; display:block;}
    #information li a:hover{text-decoration:none !important; color:#ff5304;}
    
    
    
    
    
    
    #moreinformation {}
    #moreinformation ul{list-style:none; list-style-position:outside; font-family:Arial, Helvetica, sans-serif}
    #moreinformation li{color:#696969; font-size:11px; line-height:16px; background:url(../images/list_background1.gif) no-repeat 0px 6px; padding-left:16px; font-weight:normal;}
    #moreinformation li span.top-span{display:block; padding:1px 0 7px 0; background:url(../images/spacer.gif);}
    #moreinformation li a{color:#696969; font-size:11px; line-height:16px; text-decoration:none; font-weight:normal; padding-left:0; display:block;}
    #moreinformation li a:hover{text-decoration:none !important; color:#ff5304;}
    
    
    
    
    
    #bestsellers {}
    #bestsellers ul{list-style:none; list-style-position:outside; font-family:Tahoma}
    #bestsellers li{color:#696969; font-size:11px; line-height:16px; background:url(../images/list_background1x.gif) no-repeat 0 12px; padding-left:0; text-decoration:none; font-weight:normal;}
    #bestsellers li.category-products{color:#696969; font-size:11px; line-height:16px;  background:url(../images/list_background1x.gif) no-repeat 16px 12px; text-decoration:none; font-weight:normal; padding:2px 0 2px 0;}
    #bestsellers li span.top-span{display:block; padding:4px 0 5px 0; background:url(../images/list_background.gif) repeat-x left top;}
    #bestsellers li.category-products span.top-span{display:block; padding:2px 0 2px 10px; }
    #bestsellers li.category-top_un span.top-span{display:block; background:url(../images/spacer.gif) no-repeat left top;}
    #bestsellers li a{color:#696969; font-size:11px; line-height:16px; text-decoration:none; font-weight:normal; padding-left:0; display:block;}
    #bestsellers li a:hover{text-decoration:none; color:#ff5304; font-weight:bold}
    
    
    
    
    
    #ezpages {}
    #ezpages ul{list-style:none; list-style-position:outside; font-family:Arial, Helvetica, sans-serif}
    #ezpages li{color:#696969; font-size:11px; line-height:16px; background:url(../images/list_background1.gif) no-repeat 0px 6px; padding-left:16px; font-weight:normal;}
    #ezpages li span.top-span{display:block; padding:1px 0 7px 0; background:url(../images/spacer.gif);}
    #ezpages li a{color:#696969; font-size:11px; line-height:16px; text-decoration:none; font-weight:normal; padding-left:0; display:block;}
    #ezpages li a:hover{text-decoration:none !important; color:#ff5304;}
    
    
    
    
    #orderhistory {}
    #orderhistory .box_body img {padding:2px; vertical-align:middle; margin:3px 0px;}
    
    
    
    /* ----------------------- BANNER BOXES ------------------------- */
    
    #bannerbox .box{background:none; margin-bottom:3px; width:100%;}
    #bannerbox .box .inbox1{background:none;}
    #bannerbox .box .inbox2{background:none;}
    #bannerbox .background-top-4{background:none; width:100%;}
    #bannerbox .background-top-left-4{background:none; width:100%;}
    #bannerbox .background-top-right-4{background:none; width:100%;}
    #bannerbox .background-bottom-left-4{background:none; width:100%;}
    #bannerbox .background-bottom-right-4{background:none; padding:0;}
    #bannerbox .box-indent{padding:0; background:none;}
    
    
    #bannerbox .box_head{color:#ffffff; font-family:Arial, Helvetica, sans-serif; font-size:12px; text-transform:uppercase; font-weight:bold; border-bottom:solid 1px #6da1d6; padding-bottom:6px; width:98%; display:none;}
    #bannerbox.box .box_body {padding:0 0 0 0;}
    
    
    #bannerbox2 .box_head{color:#ffffff; font-family:Arial, Helvetica, sans-serif; font-size:12px; text-transform:uppercase; font-weight:bold; border-bottom:solid 1px #6da1d6; padding-bottom:6px; width:98%; display:none;}
    #bannerbox2.box .box_body {padding:0 0 0 0;}
    
    #bannerboxall .box_head{color:#ffffff; font-family:Arial, Helvetica, sans-serif; font-size:12px; text-transform:uppercase; font-weight:bold; border-bottom:solid 1px #6da1d6; padding-bottom:6px; width:98%; display:none;}
    #bannerboxall.box .box_body {padding:0 0 0 0;}
    
    
    #bannerbox2 .box{background:none; margin-bottom:3px; width:100%;}
    #bannerbox2 .box .inbox1{background:none;}
    #bannerbox2 .box .inbox2{background:none;}
    #bannerbox2 .background-top-4{background:none; width:100%;}
    #bannerbox2 .background-top-left-4{background:none; width:100%;}
    #bannerbox2 .background-top-right-4{background:none; width:100%;}
    #bannerbox2 .background-bottom-left-4{background:none; width:100%;}
    #bannerbox2 .background-bottom-right-4{background:none; padding:0;}
    #bannerbox2 .box-indent{padding:0; background:none;}
    
    
    #bannerboxall .box{background:none; margin-bottom:3px; width:100%;}
    #bannerboxall .box .inbox1{background:none;}
    #bannerboxall .box .inbox2{background:none;}
    #bannerboxall .background-top-4{background:none; width:100%;}
    #bannerboxall .background-top-left-4{background:none; width:100%;}
    #bannerboxall .background-top-right-4{background:none; width:100%;}
    #bannerboxall .background-bottom-left-4{background:none; width:100%;}
    #bannerboxall .background-bottom-right-4{background:none; padding:0;}
    #bannerboxall .box-indent{padding:0; background:none;}
    
    
    
    
    
    /* ----------------------- PRODUCT BOXES ------------------------- */
    
    #featured a img, #whatsnew a img, #specials a img, #reviews a img, #manufacturerinfo img, #productnotifications img {}
    #reviews img {}
    
    
    #featured {}
    #featured .box .box-indent{padding:18px 23px 13px 30px;}
    
    
    #whatsnew {}
    #whatsnew .box .box-indent{padding:18px 23px 15px 30px;}
    
    
    
    #specials {}
    #specials .box .box-indent{padding:18px 23px 15px 30px;}
    
    
    
    
    #reviews {}
    #reviews .box .box-indent{padding:18px 23px 13px 30px;}
    
    
    
    
    
    
    
    #manufacturerinfo {}
    
    
    
    #productnotifications {}
    
    
    /* ----------------------- FORM BOXES ------------------------- */
    
    #search {}
    #search .box .box-indent{padding-right:0;}
    
    
    #search input.s_input{width:130px; height:20px; background:#ffffff; color:#000000; font-size:11px; border:solid 1px #dedede}
    #search a{color:#7f7a87; font-size:11px; color:#7f7a87; text-decoration:underline; padding-right:8px;}
    #search a:hover{text-decoration:none;}
    
    .box1_inn1{background:url(../images/box1_bg2.gif) repeat-x left top #a9a9a9; width:100%; margin-bottom:3px;}
    .box1_inn2{background:url(../images/box1_bg6.gif) repeat-x left bottom; width:100%;}
    .box1_inn3{background:url(../images/box1_bg5.gif) repeat-y left top; width:100%;}
    .box1_inn4{background:url(../images/box1_bg7.gif) repeat-y right top; width:100%;}
    .box1_inn5{background:url(../images/box1_bg1.gif) no-repeat left top; width:100%;}
    .box1_inn6{background:url(../images/box1_bg3.gif) no-repeat right top; width:100%;}
    .box1_inn7{background:url(../images/box1_bg4.gif) no-repeat left bottom; width:100%;}
    .box1_inn8{background:url(../images/box1_bg8.gif) no-repeat right bottom; padding:28px 0 30px 25px;}
    .box1_inn8 input.input_search{width:140px; height:16px; border:solid 1px #a8a8a8; color:#434342; font-family:Tahoma; font-size:11px; padding:2px 0 0 2px;}
    
    
    
    
    
    
    
    
    
    
    
    
    #manufacturers {}
    
    
    
    #currencies {}
    
    
    
    #tellafriend {}
    
    
    
    #recordcompanies {}
    
    
    #musicgenres {}
    
    
    
    /* ----------------------- TEXT BOXES ------------------------- */
    
    #languages {}
    
    
    #whosonline {}
    
    
    
    #documentcategories {}
    
    #shoppingcart {}
    .box2_inn1{background:url(../images/box2_bg2.gif) repeat-x left top #f7f7f7; width:100%; margin-bottom:3px;}
    .box2_inn2{background:url(../images/box2_bg6.gif) repeat-x left bottom; width:100%;}
    .box2_inn3{background:url(../images/box2_bg5.gif) repeat-y left top; width:100%;}
    .box2_inn4{background:url(../images/box2_bg7.gif) repeat-y right top; width:100%;}
    .box2_inn5{background:url(../images/box2_bg1.gif) no-repeat left top; width:100%;}
    .box2_inn6{background:url(../images/box2_bg3.gif) no-repeat right top; width:100%;}
    .box2_inn7{background:url(../images/box2_bg4.gif) no-repeat left bottom; width:100%;}
    .box2_inn8{background:url(../images/box2_bg8.gif) no-repeat right bottom; padding:23px 25px 25px 24px;}
    stylesheet css buttons.css
    Code:
    /**
     * CSS Buttons Stylesheet
     *
     * Thanks to paulm for much of the content of the CSS buttons code
     *
     * @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_buttons.css 2765 2006-01-01 21:15:45Z birdbrain $
     */
    
    /* css buttons */
    .cssButton, .cssButtonHover {
    width : 20em;
    background-color: #F4F4F4;
    color : #000000;
    border: 2px outset #F4F4F4;
    font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    text-align:center;
    white-space: nowrap;
    text-decoration: none;
    font-weight: bold;
    padding: 0.3em;
    /*border-spacing: 1px;*/
    /*margin-left: auto;
    margin-right: auto;*/
    /*display: block;*/
    /*vertical-align: top;*/
    /*line-height: 130%;*/
    /*cursor: pointer;*/
    }
    
    .cssButtonHover {
    color: #616161;
    border-style: inset;
    text-decoration: none;
    }
    /* adding the styles below might be needed if the default button width is changed */
    /* .button_continue_shopping, .button_shipping_estimator {width: 150px;} */
    .small_delete, .button_prev, .button_next, .button_search  {width: 7em;}
    .button_sold_out_sm, .button_sold_out, .button_update_cart, .button_checkout, .button_login {width: 10em;}
    .button_return_to_product_list, .button_add_selected {width: 22em;}
    .button_in_cart{width: 19em;}  
    .button_submit {width: 18em;}
    .button_update_cart {color: red;}
    .button_update_cartHover {color: black;}
    /*.innerbox#headernavcenter .boxtext .button_search {display:inline;}*/

  9. #9
    Join Date
    Sep 2011
    Posts
    7
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    stylesheetmain.css
    Code:
    .left{float:left;}
    .right{float:right;}
    
    .name{color:#545454; font-size:11px; font-weight:bold; }
    .name a{color:#545454;  font-size:11px; font-weight:bold; text-decoration:none; border:none;}
    .name a:hover{text-decoration:underline;}
    
    
    .pict_box{ margin-bottom:12px; border-bottom:solid 1px #dbdbdb; padding-bottom:8px; text-align:center;}
    
    .text{}
    
    .price{color:#111111; font-size:15px; line-height:21px; line-height:normal; font-weight:bold;}
    .price strong{font-weight:bold;}
    
    .price_box{overflow:hidden; margin-top:5px; width:100%;}
    .price_box .coll1{width:87px; float:left; background:url(../images/price_box_bg.gif) no-repeat right top;}
    .price_box .coll2{width:auto; float:left;}
    .price_box .coll2 .ind{padding:0 0 0 20px;}
    
    
    .button{padding-top:0;}
    
    .box_line{padding:0 1px 0 1px; overflow:hidden;}
    .box_line .inner{line-height:1px; background:url(../images/line.gif) repeat-x 0px 18px; height:36px;}
    
    
    .box_line2_box{background:url(../images/background-white-left.gif) repeat-y left top;}
    .box_line2_box .inner{background:url(../images/background-white-right.gif) repeat-y right top;}
    
    .box_line2{padding:0 23px 0 23px; overflow:hidden;}
    .box_line2 .inner{line-height:1px; background:url(../images/line.gif) repeat-x 0px 23px; height:46px;}
    
    
    
    
    .box_line3{padding:0 27px 0 27px; overflow:hidden; display:none}
    .box_line3 .inner{line-height:1px; background:url(../images/line.gif) repeat-x 0px 9px; height:26px;}
    
    
    .box_line4{padding:0 12px 0 12px; overflow:hidden; display:none}
    .box_line4 .inner{line-height:1px; background:url(../images/line.gif) repeat-x 0px 21px; height:36px;}
    
    .box_line5{padding:0 0 0 0; overflow:hidden; display:none}
    .box_line5 .inner{line-height:1px; background:url(../images/line.gif) repeat-x 0px 21px; height:36px;}
    
    
    
    ol{list-style:decimal; list-style-position:inside;}
    ol li{line-height:21px;}
    
    #disp-order-sorter{width:80%;}
    
    
    #column_center input, #column_center #sorter  select{margin:-2px 0px; position:relative;}
    
    #advSearchDefault .back{float:none;}
    #advSearchDefault .forward{float:none; padding-bottom:7px;}
    #advSearchDefault fieldset{padding:4px;}
    #advSearchDefault .floatLeft select{margin-bottom:5px;}
    #advSearchDefault #inc-subcat{margin:5px 5px 5px 3px; vertical-align:middle;}
    #advSearchDefault .floatLeft{padding:11px 11px 11px 7px;}
    #advSearchDefault .floatingBox {padding:11px 11px 11px 7px;}
    
    
    #featuredProducts {overflow:hidden; zoom:1; width:100%;}
    
    
    #popupSearchHelp{background:#FFFFFF; text-align:left;}
    
    /*  ----------------------- MAIN STYLES -----------------------  */
    #sorter form {display:inline;}
    
    
    #navColumnOne {}
    #navColumnTwo {}
    
    
    
    .centerColumn {}
    .centerColumn table {}
    
    
    #indexDefault {border:none; padding:0;}
    
    #indexDefault, #specialsListing, #newProductsDefault, #allProductsDefault, #loginDefault, #productGeneral, #shoppingCartDefault {margin:0;}
    #productGeneral ul{margin-left:15px;}
    
    input#login-email-address, input#login-password, input#company, input#firstname, input#lastname, input#suburb, input#street-address, input#city, input#state, select#country, input#telephone, input#fax, input#email-address, input#contactname {width:36%; margin:0 0 3px; vertical-align:middle;}
    input#dob, input#postcode {width:70px; margin:0 0 3px; vertical-align:middle;}
    
    input#password-new, input#password-confirm {width:36%; margin:0 0 3px; vertical-align:middle;}
    
    textarea#enquiry {width:93%; margin:4px 0;}
    
    
    
    /*  ----------------------- NAVIGATION -----------------------  */
    
    #navCatTabs {color:#ffffff; font-weight:bold; margin-bottom:2px;}
    #navCatTabs ul {margin:0 10px; padding:10px 0; list-style:none; line-height:18px;}
    #navCatTabs ul li {display:inline; padding:0px 10px;}
    #navCatTabs ul li a {LINKS_STYLE}
    
    
    #navBreadCrumb {padding:10px 0px 0px 0px; color:#ffffff; font-weight:bold; margin-bottom:2px;}
    #navBreadCrumb a {LINKS_STYLE}
    
    
    
    
    /*  ----------------------- HEADINGS -----------------------  */
    
    caption h2, #accountDefaultHeading, #accountHistoryDefaultHeading, #accountNotificationsHeading, #addressBookDefaultHeading, #advSearchDefaultHeading, #advSearchResultsDefaultHeading, #checkoutShippingHeading, #checkoutPaymentHeading, #checkoutConfirmDefaultHeading, #checkoutPayAddressDefaultHeading, #checkoutShipAddressDefaultHeading, #checkoutSuccessHeading, #conditionsHeading, #cookieUsageDefaultHeading, #createAcctDefaultHeading, #createAcctSuccessHeading,  #customerAuthDefaultHeading, #discountcouponInfoHeading, #maintenanceDefaultHeading, #downloadTimeOutHeading, #gvFaqDefaultHeading, #gvRedeemDefaultHeading, #gvSendDefaultHeadingDone, #indexDefaultHeading, #loginDefaultHeading, #logoffDefaultHeading, #pageNotFoundHeading, #pageTwoHeading, #pageThreeHeading, #pageFourHeading, #privacyDefaultHeading, #shippingInfoHeading, #cartDefaultHeading, #siteMapHeading, #sslCheckHeading, #timeoutDefaultHeading, #unsubDefaultHeading, #ezPagesHeading {padding:11px 10px 11px 0; color:#000000; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:15px; line-height:normal; font-weight:bold; text-transform:capitalize;}
    
    #addressBookProcessDefault h1 {padding:15px 20px 19px 0px; margin:0 -15px 10px 10px; background:#FFFFFF url(../images/heading_icon.gif) 17px 21px no-repeat; color:#3D4142; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:bold;}
    
    
    
    
    h2 {font-size:14px; font-weight:bold; line-height:normal; color:#545454; padding:3px 0px 5px;}
    h3 {color:#545454; font-size:12px; font-weight:bold; line-height:normal; padding:3px 0px 5px;}
    h3 a {color:#545454; font-size:12px; font-weight:bold; line-height:normal; padding:3px 0px 5px; text-decoration:underline;}
    h3 a:hover{text-decoration:none;}
    h4 {color:#545454; font-size:11px; font-weight:bold; line-height:normal; padding:3px 0px 5px;}
    
    
    
    
    
    /*  ----------------------- PRODUCT LISTING -----------------------  */
    
    
    
    /*  HEADINGS  */
    
    h2.centerBoxHeading {padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    h1 {padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    
    #alsoPurchased h2.centerBoxHeading {padding:0 10px 15px 0; color:#000000; text-decoration:none; font-family:Tahoma; font-size:14px; line-height:normal; font-weight:bold; text-transform:uppercase; line-height:16px;}
    
    #indexCategoriesHeading, #productListHeading {padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    
    #newProductsDefaultHeading, #allProductsDefaultHeading, #featuredDefaultHeading, #specialsListingHeading, #reviewsDefaultHeading {padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    #newProductsDefaultHeading, #allProductsDefaultHeading, #featuredDefaultHeading, #specialsListingHeading, #reviewsDefaultHeading a{padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    
    
    
    #specialsListingHeading {}
    
    /*  --------  */
    
    
    
    /*  LISTINGS  */
    
    #newProductsDefault, #allProductsDefault, #featuredDefault, #specialsListing, #reviewsDefault {}
    
    #newProductsDefault .line, #allProductsDefault .line, #featuredDefault .line {padding:0; line-height:0px; font-size:0px; background:url(../images/line_1.gif) top left repeat-x; height:7px;}
    
    #newProductsDefault td, #allProductsDefault td, #featuredDefault td {border:none;}
    
    #newProductsDefault a.link, #allProductsDefault a.link, #featuredDefault a.link, #allProductsDefault a.link {text-decoration:none; text-decoration:underline;  font-size:11px; color:#ff5304; line-height:normal; font-weight:normal; text-transform:lowercase; font-family:Tahoma}
    #newProductsDefault a.link:hover, #allProductsDefault a.link:hover, #featuredDefault a.link:hover {text-decoration:none;}
    
    /*  --------  */
    
    /*  REVIEWS  */
    
    #reviewsDefault hr {border-top:1px solid #666666; margin:0 0px;}
    #reviewsDefault .smallProductImage {padding:0px 10px 10px 10px;}
    #reviewsInfoDefaultHeading, #productReviewsDefaultHeading, #reviewsWriteHeading {padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    #reviewsDefault .rating, .bold {padding:5px 0px;}
    #reviewsDefault h2 {clear:both; color:#ff5304; font-size:16px; font-weight:bold; text-decoration:none; text-transform:none; font-family:Tahoma}
    #reviewsInfoDefaultPrice, #reviewsWritePrice, h2#productReviewsDefaultPrice {color:#000000 !important; font-size:16px !important; line-height:24px !important; font-weight:bold; font-family:Tahoma;}
    
    
    #review-text{margin-top:15px;}
    
    
    #categoryImgListing {
    float:left;
    margin-right:15px;
    padding:0;
    }
    /*  -------  */
    
    
    /*  CATEGORY  */
    
    #indexCategories {}
    
    #categoryImgListing {padding:0; float:left; margin-right:15px;}
    
    
    
    
    .categoryListBoxContents {text-align:left; padding:5px 0px;}
    .categoryListBoxContents img {margin-bottom:0;}
    .categoryListBoxContents a {text-decoration:none;color:#ff5304 !important; font-size:16px !important; line-height:24px !important; font-weight:bold; font-family:Tahoma; text-transform:none; text-decoration:none;}
    .categoryListBoxContents a:hover{text-decoration:underline;}
    
    /*  --------  */
    
    
    /*  CATEGORY LISTING  */
    
    .tabTable {margin:0px 0px 0 0px;}
    .tabTable th {padding:0 1px 1px 1px; text-align:left;background:url(../images/productListing-heading_bg_th.gif) repeat-x left top #4dbbb3;}
    .tabTable th { font-family:Tahoma; font-size:11px; color:#434342; line-height:normal; font-weight:bold; text-transform:uppercase; background:url(../images/background-side-heading-bgx.gif) repeat-x left top; padding-bottom:4px; padding-top:3px;}
    .tabTable th a {color:#434342; text-decoration:none;}
    .tabTable th a:hover{text-decoration:underline;}
    
    #listCell0-0{padding-left:17px;}
    
    .productListing-rowheading {}
    .productListing-heading a {text-decoration:none !important;}
    .productListing-heading a:hover {text-decoration:underline !important;}
    
    .tabTable td {}
    .tabTable td {font-size:18px;  color:#000000; font-weight:bold;}
    h3.itemTitle{text-align:left;}
    .tabTable td .listingDescription {padding:1px 5px 5px 0; font-family:Tahoma; font-size:11px; line-height:16px; color:#434342; text-align:left; font-weight:normal;}
    .tabTable td a {text-decoration:underline;}
    .tabTable td a:hover {text-decoration:none;}
    
    .productListing-data a{color:#ff5304; font-size:11px;  font-weight:normal; font-family:Tahoma; font-weight:normal}
    .productListing-data{color:#000000 !important; font-size:16px !important; line-height:24px !important; font-weight:bold !important; text-align:center; padding-top:0px; background:url(../images/productListing-data-bg.gif) repeat-x left bottom #FFFFFF; font-family:Tahoma}
    
    .productListing-data img{margin-right:0;}
    
    .productListing-data h3{color:#000000; font-size:15px; font-weight:bold; margin-bottom:6px; padding-top:0; text-transform:none; font-family:Arial, Helvetica, sans-serif;}
    .productListing-data h3 a{color:#ff5304; font-size:16px; font-weight:bold; text-transform:none; font-family:Tahoma; text-decoration:none;}
    .productListing-data h3 a:hover{text-decoration:underline;}
    
    
    
    
    /*  ----------------  */
    
    
    
    /*  TABLES  */
    
    #prevOrders {margin:0px 0px 5px 0px; border-left:1px solid #dbdbdb;}
    #prevOrders th {padding:5px 10px; border-top:1px solid #dbdbdb; border-right:1px solid #dbdbdb; border-bottom:1px solid #dbdbdb; text-align:center;}
    #prevOrders th {font-size:11px; color:#545454; line-height:normal; font-weight:bold; text-transform:uppercase;}
    #prevOrders th a {color:#545454;}
    
    #prevOrders td {border-right:1px solid #dbdbdb; border-bottom:1px solid #dbdbdb; padding:5px;}
    #prevOrders td {font-family:tahoma; font-size:11px; line-height:normal; color:#545454;}
    #prevOrders td a {LINKS_STYLE}
    
    
    #accountHistInfo table {margin:0px 0px 5px 0px; border-left:1px solid #111111;}
    #accountHistInfo th {padding:5px 10px; border-top:1px solid #111111; border-right:1px solid #111111; border-bottom:1px solid #111111; text-align:center;}
    #accountHistInfo th {font-size:12px; color:#111111; line-height:normal; font-weight:bold; text-transform:uppercase;}
    #accountHistInfo th a {color:#1AA8F3;}
    
    #accountHistInfo td {border-right:1px solid #111111; border-bottom:1px solid #111111; padding:5px;}
    #accountHistInfo td {font-family:tahoma; font-size:11px; line-height:normal; color:#111111;}
    #accountHistInfo td a {LINKS_STYLE}
    
    /*  ----------------  */
    
    
    /*  ----------------------- PRODUCT INFO -----------------------  */
    
    .categoryIcon {padding:0 15px 0 0;}
    .categoryIcon a {color:#13140d; font-family:Arial, Helvetica, sans-serif; font-size:13px; font-weight:bold; text-decoration:none;}
    
    .navNextPrevWrapper {margin:10px; padding:10px 10px; text-align:center;}
    
    #productMainImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
    	margin:1px 5px 10px 0;  
    }
    #productMainImage a, #reviewsInfoDefaultProductImage a, #productReviewsDefaultProductImage a, #reviewWriteMainImage a {color:#000000; font-family:Tahoma; font-size:10px;text-decoration:none;}
    
    #productName {padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    #productPrices {color:#000000; font-size:16px; line-height:18px; font-weight:bold; text-decoration:none;  font-family:Tahoma}
    #productDescription {margin:0px 1px; padding:0;  font-weight:normal;}
    
    #cartAdd {float:left; text-align:left; width:243px; height:94px;}
    #cartAdd .cartAdd_indent{padding:16px 0 0 0;}
    #cartAdd .cartAdd_indent span{ font-family:Tahoma; font-size:11px; text-transform:capitalize; color:#434342; font-weight:normal;}
    #cartAdd .cartAdd_indent input.cart_quantity{width:69px; height:18px; background:#ffffff; color:#181c23; font-size:11px; margin-top:3px;}
    * html #cartAdd .cartAdd_indent .padd1{padding-top:2px;}
    
    
    #alsoPurchased {margin-top:10px;}
    #alsoPurchased a {text-decoration:none; text-decoration:none; font-size:10px; color:#111111; line-height:normal; font-weight:bold; text-transform:none;}
    #alsoPurchased a:hover{text-decoration:none; color:#FF0000}
    
    #productAdditionalImages {margin:2px; border:1px solid #545454; padding:7px; overflow:hidden;zoom:1;}
    #productAdditionalImages .additionalImages {text-align:center;}
    #productAdditionalImages .additionalImages a {text-decoration:none; font-size:10px; color:#111111; line-height:normal; font-weight:bold; text-transform:capitalize;}
    #productAdditionalImages .additionalImages a:hover{text-decoration:none; color:#ff0000}
    
    #productAdditionalImages .img_box{padding:0; margin:15px;}
    
    
    
    /*  ----------------------- SHOPPING CART -----------------------  */
    
    #cartInstructionsDisplay {padding:10px;}
    
    #cartEmptyText {font-size:14px; color:#000000; padding:20px 0 10px 10px;}
    
    #cartContentsDisplay {border-left:1px solid #545454;}
    #cartContentsDisplay th {border:1px solid #545454; border-left:none; padding:5px; text-align:center;}
    #cartContentsDisplay th {font-size:14px; color:#545454; line-height:normal; font-weight:bold; text-transform:uppercase;}
    #cartContentsDisplay th a {color:#1AA8F3;}
    #cartContentsDisplay td {border-right:1px solid #545454; border-bottom:1px solid #545454; padding:5px; text-align:center;}
    #cartContentsDisplay td .cartAttribsList {text-align:left;}
    #cartContentsDisplay td {font-family:tahoma; font-size:11px; line-height:normal; color:#000000;}
    #cartContentsDisplay td.cartTotalDisplay {color:#000000; font-size:15px; font-weight:bold;}
    #cartContentsDisplay td #cartImage {float:none; display:block;}
    #cartContentsDisplay td a {color:#ff5304; font-family:Tahoma; font-size:16px; font-weight:bold; text-decoration:none;}
    #cartContentsDisplay td a:hover{text-decoration:underline;}
    
    #cartSubTotal {text-align:right; font-weight:bold; width:100%; padding:10px 0; text-transform:uppercase}
    #cartSubTotal strong {color:#000000; font-size:15px; font-weight:bold;}
    
    
    #shoppingCartDefault .buttonRow {margin:5px;}
    
    #shoppingCartDefault .text_v_c {padding:15px; text-align:right; font-family:tahoma; font-size:11px; line-height:normal; color:#545454;}
    #shoppingCartDefault .text_v_c a {text-decoration:underline; font-size:12px; color:#545454; line-height:normal; font-weight:bold;}
    
    
    .advisory {margin:10px;}
    
    
    
    
    #infoShoppingCart {background:#ffffff; text-align:left;}
    #infoShoppingCart div {padding:20px;}
    #infoShoppingCart h1 {padding:15px 20px 19px 1px; color:#000000; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:bold;}
    h1#acctNewslettersDefaultHeading {padding:1px 10px 0 1px; color:#333333; text-decoration:none; font-family:Tahoma; font-size:12px; line-height:normal; font-weight:bold; text-transform:capitalize; line-height:14px;}
    
    #popupSearchHelp div {padding:20px;}
    
    #popupCVVHelp {background:#FFFFFF;}
    #popupCVVHelp div {padding:10px 20px;}
    #popupCVVHelp h1 {padding:4px 10px 15px 41px; color:#030303; text-decoration:none; font-family:Arial, Helvetica, sans-serif; font-size:18px; line-height:normal; font-weight:normal; text-transform:capitalize; line-height:16px;}
    
    
    
    .hiddenField {display:none;}
    
    
    
    #popupShippingEstimator {background:#ffffff; text-align:left;}
    #popupShippingEstimator div {padding:15px; font-size:11px;}
    
    #shippingEstimatorContent label{display:block; padding-bottom:2px;}
    
    #shippingEstimatorContent h2 {padding:3px 10px 12px 14px; color:#201f23; text-decoration:none; font-size:12px; line-height:normal; font-weight:bold; text-transform:uppercase;}
    
    #shippingEstimatorContent select#country, #shippingEstimatorContent select#stateZone {width:160px; margin:0 0 3px;}
    #shippingEstimatorContent input#state {width:156px; margin:0 0 3px 131px;}
    #shippingEstimatorContent label#stateLabel {display:none;}
    
    #shippingEstimatorContent td.cartTotalDisplay {font-size:15px; font-family:tahoma; color:#201f23; font-weight:bold;}
    
    #shippingEstimatorContent table {margin:0px 0px 5px 0px; border-left:1px solid #dbdbdb; border-bottom:1px solid #dbdbdb; border-collapse:collapse;}
    #shippingEstimatorContent th {padding:5px 10px; border-top:1px solid #dbdbdb; border-right:1px solid #dbdbdb; text-align:center;}
    #shippingEstimatorContent th { color:#201f23;}
    #shippingEstimatorContent th a {color:#201f23;}
    
    #shippingEstimatorContent td {border-right:1px solid #dbdbdb; border-top:1px solid #dbdbdb; padding:5px;}
    #shippingEstimatorContent td {font-family:tahoma; font-size:11px; line-height:normal; color:#201f23;}
    
    
    
    #upcomingProductsTable{ color:#201f23; font-family:Arial, Helvetica, sans-serif; font-size:12px;}
    #upcomingProductsTable a{ color:#201f23; font-family:Arial, Helvetica, sans-serif; font-size:12px; text-decoration:underline;}
    #upcomingProductsTable a:hover{text-decoration:none;}
    
    
    
    .background-top{padding:0 10px 0 10px;}

  10. #10
    Join Date
    Sep 2011
    Posts
    7
    Plugin Contributions
    0

    Default Re: Removing the pipe separator from the HOME LOG IN header

    stylesheet tm.css
    Code:
    *{padding:0; margin:0;}
    body{background:url(../images/top_talling.gif) repeat-x left top #ececec; font-family:Tahoma; font-size:11px; line-height:14px; color:#727272; text-align:center}
    table{border-collapse:collapse; padding:0;  font-family:Tahoma; font-size:11px; line-height:14px; color:#727272;}
    td{vertical-align:top; padding:0; font-family:Tahoma; font-size:11px; line-height:14px; color:#727272;}
    a {color:#898989; text-decoration:underline;}
    a:hover{text-decoration:none;}
    img {border:0;}
    
    .clear{clear:both;}
    /***************************************************************************************************************/
    .main_t{width:982px; margin:auto; text-align:left}
    .header_t .inner1{background:url(../images/header_bg4.gif) repeat-x left top #FFFFFF; width:100%;}
    .header_t .inner2{background:url(../images/header_bg4.gif) repeat-x left bottom; width:100%;}
    .header_t .inner3{background:url(../images/header_bg4.gif) repeat-y left top; width:100%;}
    .header_t .inner4{background:url(../images/header_bg4.gif) repeat-y right top; width:100%;}
    .header_t .inner5{background:url(../images/header_left_top_bg.gif) no-repeat left top; width:100%;}
    .header_t .inner6{background:url(../images/header_left_bottom_bg.gif) no-repeat left bottom; width:100%;}
    .header_t .inner7{background:url(../images/header_right_top_bg.gif) no-repeat right top; width:100%;}
    .header_t .inner8{background:url(../images/header_right_bottom_bg.gif) no-repeat right bottom; padding:4px;}
    
    .header_t .row1{height:73px; background:url(../images/header_bg2.gif) repeat-x left top; width:100%;}
    .header_t .row1 .inrow1{background:url(../images/header_bg1.gif) no-repeat left top; width:100%;}
    .header_t .row1 .inrow2{background:url(../images/header_bg3.gif) no-repeat right top; width:100%;}
    .header_t .row1 .inrow2 .col1{width:auto; float:left;}
    .header_t .row1 .inrow2 .col1 .indent{padding:10px 0 10px 13px;}
    .header_t .row1 .inrow2 .col2{width:auto; float:right;}
    .header_t .row1 .inrow2 .col2 .col1{width:208px; float:left;}
    .header_t .row1 .inrow2 .col2 .col1 .col1{width:64px; float:left; color:#6e6e6e}
    .header_t .row1 .inrow2 .col2 .col1 .col2{width:auto; float:left;}
    .header_t .row1 .inrow2 .col2 .col1 .col2 select{width:117px; height:18px; border:solid 1px #d1cfcf; color:#939393; font-family:Tahoma; font-size:11px;}
    
    .header_t .row1 .inrow2 .col2 .col2{width:115px; float:left;}
    .header_t .row1 .inrow2 .col2 .col2 img{margin-right:2px;}
    
    .header_t .row2{ background:url(../images/header_bg5.gif) repeat-x left top #c63800; overflow:hidden; min-height:41px; height:auto !important; height:41px;}
    
    .user_menu ul{list-style:none; text-transform:capitalize; margin-top:0; font-family:Tahoma; font-size:12px; font-weight:bold;}
    .user_menu li{float:left; background:url(../images/user_menu_bg.gif) no-repeat 100% 0px; display:block;}
    .user_menu li a{display:block; padding:11px 30px 16px 31px; text-decoration:none; color:#ffffff}
    .user_menu li.first a{display:block; padding:11px 18px 16px 31px; text-decoration:none; color:#ffffff}
    .user_menu li a:hover{text-decoration:none; color:#4d1a02;}
    
    
    .header_t .row3{background:url(../images/header_bg6.gif) repeat-x left top; width:100%;}
    .header_t .row3 .inrow1{background:url(../images/header_bg7.gif) no-repeat left top; width:100%;}
    .header_t .row3 .inrow2{background:url(../images/header_bg8.gif) no-repeat right top; width:100%;height:31px; overflow:hidden}
    
    
    .user_menu2 ul{list-style:none; text-transform:uppercase; margin-top:0; font-family:Tahoma; font-size:10px;}
    .user_menu2 li{float:left; background:url(../images/user_menu_bg2.gif) no-repeat 100% 5px; display:block;}
    .user_menu2 li a{display:block; padding:2px 21px 16px 21px; text-decoration:none; color:#6e6e6e}
    .user_menu2 li.first a{display:block; padding:2px 18px 16px 21px; text-decoration:none; color:#6e6e6e}
    .user_menu2 li a:hover{text-decoration:underline}
    
    
    
    .content_t{}
    
    .footer_t{}
    .footer_t .inner1{background:url(../images/footer_side.gif) repeat-x left top #FFFFFF; width:100%;}
    .footer_t .inner2{background:url(../images/footer_side.gif) repeat-x left bottom; width:100%;}
    
    .footer_t .inner3{background:url(../images/footer_side.gif) repeat-y left top; width:100%;}
    .footer_t .inner4{background:url(../images/footer_side.gif) repeat-y right top; width:100%;}
    .footer_t .inner5{background:url(../images/footer_left_top_bg.gif) no-repeat left top; width:100%;}
    .footer_t .inner6{background:url(../images/footer_left_bottom_bg.gif) no-repeat left bottom; width:100%;}
    .footer_t .inner7{background:url(../images/footer_right_top_bg.gif) no-repeat right top; width:100%;}
    .footer_t .inner8{background:url(../images/footer_right_bottom_bg.gif) no-repeat right bottom; min-height:67px; height:auto !important; height:67px;}
    .footer_t .inner9{padding:11px 39px 11px 32px;}
    
    
    .footer_t .col1{width:auto; float:left;}
    .footer_t .col2{width:auto; float:right;}
    
    
    .footer_t { color:#434342}
    .footer_t a { color:#ff5304}
    
    
    .footer_t span{ color:#a8a8a8}
    .footer_t span a {color:#434342; text-decoration:none;}
    .footer_t span a:hover{text-decoration:underline;}
    
    
    
    
    
    /********************************************/
    
    
    .content_bg4{width:100%; margin-top:20px;}
    .content_bg4 .td1{width:100%;}
    .content_bg4 .td1 div{padding:16px 0 15px 23px; color:#000000; font-family:Tahoma; font-size:16px;}
    .content_bg4 .td2{width:auto; text-align:right}
    .content_bg4 .td2 div{padding:10px 7px 6px 0;}
    
    
    .nav_top_bg1{background:url(../images/nav_top_bg1.gif) repeat-x left top; width:100%;}
    .nav_top_bg2{background:url(../images/nav_top_bg1.gif) repeat-x left bottom; padding:3px 0 2px 0; width:100%;}
    
    
    .shop_box strong{color:#fb6002; font-family:Tahoma; font-size:12px; font-weight:bold; text-transform:capitalize;}
    .shop_box span {color:#727272;}
    .shop_box a{color:#727272; text-decoration:none;}
    .shop_box a:hover{text-decoration:underline;}
    
    #catBoxDivider{height:9px;}
    
    
    .boxcol_inn1{background:url(../images/boxcol_bg5.gif) repeat-x left top #ffffff; width:100%; margin-bottom:3px;}
    .boxcol_inn2{background:url(../images/boxcol_bg5.gif) repeat-x left bottom; width:100%;}
    .boxcol_inn3{background:url(../images/boxcol_bg5.gif) repeat-y left top; width:100%;}
    .boxcol_inn4{background:url(../images/boxcol_bg5.gif) repeat-y right top; width:100%;}
    .boxcol_inn5{background:url(../images/boxcol_bg1.gif) no-repeat left top; width:100%;}
    .boxcol_inn6{background:url(../images/boxcol_bg2.gif) no-repeat right top; width:100%;}
    .boxcol_inn7{background:url(../images/boxcol_bg4.gif) no-repeat left bottom; width:100%;}
    .boxcol_inn8{background:url(../images/boxcol_bg3.gif) no-repeat right bottom; padding:4px 4px 2px 4px; min-height:50px; height:auto !important; height:50px;}
    .boxcol_inn8 input.input_search{width:140px; height:16px; border:solid 1px #a8a8a8; color:#434342; font-family:Tahoma; font-size:11px; padding:2px 0 0 2px;}
    
    
    /******************************************************************/
    
    .product_box {width:100%; margin-bottom:2px; background:#ffffff}
    .product_box .bg_inner1{background:url(../images/product_box_side_bg.gif) repeat-x left top;width:100%;}
    .product_box .bg_inner2{background:url(../images/product_box_side_bg.gif) repeat-x left bottom;width:100%;}
    .product_box .bg_inner3{background:url(../images/product_box_side_bg.gif) repeat-y left top;width:100%;}
    .product_box .bg_inner4{background:url(../images/product_box_side_bg.gif) repeat-y right top;width:100%;}
    .product_box .bg_inner5{background:url(../images/product_box_left_top_bgx.gif) no-repeat left top;width:100%;}
    .product_box .bg_inner6{background:url(../images/product_box_left_bottom_bgx.gif) no-repeat left bottom;width:100%;}
    .product_box .bg_inner7{background:url(../images/product_box_right_top_bgx.gif) no-repeat right top;width:100%;}
    .product_box .bg_inner8{background:url(../images/product_box_right_bottom_bgx.gif) no-repeat right bottom;width:100%;}
    .product_box .bg_inner9{padding:15px 19px 11px 18px;}
    .product_box .bg_inner91{padding:22px 17px 22px 20px; zoom:1;}
    .product_box .bg_inner911{padding:1px; zoom:1;}
    
    
    .product_box2 {width:100%; margin-bottom:2px; background:#ffffff}
    .product_box2 .bg_inner1{background:url(../images/product_box_side_bg.gif) repeat-x left top;width:100%;}
    .product_box2 .bg_inner2{background:url(../images/product_box_side_bg.gif) repeat-x left bottom;width:100%;}
    .product_box2 .bg_inner3{background:url(../images/product_box_side_bg.gif) repeat-y left top;width:100%;}
    .product_box2 .bg_inner4{background:url(../images/product_box_side_bg.gif) repeat-y right top;width:100%;}
    .product_box2 .bg_inner5{background:url(../images/product_box_left_top_bgx.gif) no-repeat left top;width:100%;}
    .product_box2 .bg_inner6{background:url(../images/product_box_left_bottom_bg2x.gif) no-repeat left bottom;width:100%;}
    .product_box2 .bg_inner7{background:url(../images/product_box_right_top_bgx.gif) no-repeat right top;width:100%;}
    .product_box2 .bg_inner8{background:url(../images/product_box_right_bottom_bg2x.gif) no-repeat right bottom;width:100%;}
    .product_box2 .bg_inner9{padding:30px 19px 22px 20px;}
    .product_box2 .bg_inner91{padding:30px 19px 22px 20px;}
    
    
    
    
    
    
    
    .product_box_PagesResult{overflow:hidden; margin-bottom:6px;}
    .product_box_PagesResult .row1 .product_box_PagesResult_inner1{background:url(../images/bg_PagesResult_right_top.gif) no-repeat right top; padding-right:10px;}
    .product_box_PagesResult .row1 .product_box_PagesResult_inner2{background:url(../images/bg_PagesResult_left_top.gif) no-repeat left top; padding-left:10px;}
    .product_box_PagesResult .row1 .product_box_PagesResult_inner3{background:url(../images/bg_PagesResult_top.gif) repeat-x left top; height:9px;}
    
    .product_box_PagesResult .row2{background:url(../images/bg_PagesResult_top2.gif) repeat-x left top #f2f2f2; width:100%;}
    .product_box_PagesResult .row2 .product_box_PagesResult_inner1{background:url(../images/bg_PagesResult_left.gif) repeat-y left top; width:100%;}
    .product_box_PagesResult .row2 .product_box_PagesResult_inner2{background:url(../images/bg_PagesResult_left.gif) repeat-y right top; width:100%;}
    .product_box_PagesResult .row2 .product_box_PagesResult_inner3{background:url(../images/bg_PagesResult_left_top2.gif) no-repeat left top; width:100%;}
    .product_box_PagesResult .row2 .product_box_PagesResult_inner4{background:url(../images/bg_PagesResult_right_top2.gif) no-repeat right top; width:100%;}
    
    .product_box_PagesResult .row3 .product_box_PagesResult_inner1{background:url(../images/bg_PagesResult_right_bottom.gif) no-repeat right top; padding-right:10px;}
    .product_box_PagesResult .row3 .product_box_PagesResult_inner2{background:url(../images/bg_PagesResult_left_bottom.gif) no-repeat left top; padding-left:10px;}
    .product_box_PagesResult .row3 .product_box_PagesResult_inner3{background:url(../images/bg_PagesResult_bottom.gif) repeat-x left top; height:10px;}
    
    
    
    
    
    
    #column_center{width:100%;}
    
    
    
    
    
    
    
    
    .title_box{overflow:hidden; margin-bottom:3px;}
    .title_box .row1 .title_inner1{background:url(../images/bg_titile_right_top.gif) no-repeat right top; padding-right:10px;}
    .title_box .row1 .title_inner2{background:url(../images/bg_titile_left_top.gif) no-repeat left top; padding-left:10px;}
    .title_box .row1 .title_inner3{background:url(../images/bg_titile_top.gif) repeat-x left top; height:10px;}
    
    .title_box .row2{background:url(../images/bg_titile_top2.gif) repeat-x left top #e1e1e1; width:100%;}
    .title_box .row2 .title_inner1{background:url(../images/bg_titile_left.gif) repeat-y left top; width:100%;}
    .title_box .row2 .title_inner2{background:url(../images/bg_titile_left.gif) repeat-y right top; width:100%;}
    .title_box .row2 .title_inner3{background:url(../images/bg_titile_left_top2.gif) no-repeat left top; width:100%;}
    .title_box .row2 .title_inner4{background:url(../images/bg_titile_right_top2x.gif) no-repeat right top; width:100%;}
    
    
    
    .title_box .row3 .title_inner1{background:url(../images/bg_titile_right_bottom.gif) no-repeat right top; padding-right:1px;}
    .title_box .row3 .title_inner2{background:url(../images/bg_titile_left_bottom.gif) no-repeat left top; padding-left:1px;}
    .title_box .row3 .title_inner3{background:url(../images/bg_titile_bottom.gif) repeat-x left top; height:1px;}
    
    
    
    
    
    .img_box1 {}
    .img_box1 img{}
    
    
    
    .img_box11 {background:#ffffff;}
    .img_box11 .bg_inner1{background:url(../images/img_box2_top.gif) repeat-x left top;}
    .img_box11 .bg_inner2{background:url(../images/img_box2_bottom.gif) repeat-x left bottom;} 
    .img_box11 .bg_inner3{background:url(../images/img_box2_left.gif) repeat-y left top;}
    .img_box11 .bg_inner4{background:url(../images/img_box2_right.gif) repeat-y right top;}
    .img_box11 .bg_inner5{background:url(../images/img_box2_left_top.gif) no-repeat left top;}
    .img_box11 .bg_inner6{background:url(../images/img_box2_left_bottom.gif) no-repeat left bottom;}
    .img_box11 .bg_inner7{background:url(../images/img_box2_right_top.gif) no-repeat right top;}
    .img_box11 .bg_inner8{background:url(../images/img_box2_right_bottom.gif) no-repeat right bottom;}
    .img_box11 .bg_inner9{padding:2px 3px 4px 3px;}
    
    
    
    
    
    
    .productListing-data .img_box{margin-bottom:9px; overflow:hidden; background:#FFFFFF; margin-right:0; float:left !important;}
    
    
    
    
    
    .description_box {color:#696969; font-size:11px; font-family:Tahoma; line-height:16px;}
    .price_box .description_box {color:#696969; font-size:11px; font-family:Tahoma; line-height:16px;}
    
    
    
    
    
    
    
    
    .product_box_name{color:#0e9cb6; font-family:Tahoma; font-size:14px; font-weight:bold;}
    .product_box_name .indent{padding:13px 10px 18px 23px;}
    
    .product_box_name a{color:#ff5304; text-decoration:none; font-weight:bold; font-family:Tahoma; font-size:16px; line-height:21px;}
    .product_box_name a:hover{text-decoration:underline;}
    
    .product_box_price{color:#181c23; font-size:14px; font-weight:bold; font-family:Arial, Helvetica, sans-serif}
    .product_box_price .indent{padding:16px 10px 7px 0;}
    
    
    .text{}
    
    .product_box_button{background:url(../images/product_box_button_bg.gif) repeat-x left bottom; padding-bottom:2px; padding-left:3px; margin-left:7px;}
    
    
    .price_box{margin-top:7px;}
    .price_box .td1{width:77px; background:url(../images/price_box_divider.gif) no-repeat right top;}
    .price_box .td1 .wrap{padding:1px 7px 0 0;}
    .price_box .td2{width:auto;}
    .price_box .td2 .wrap{padding:0 0 0 17px;}
    
    
    
    
    
    
    
    
    .prod_box2 .imgbox{float:left; position:relative;}
    .prod_box2 .contentbox{float:left; width:100%;}
    .prod_box2 .contentbox .contentbox_in{}
    .prod_box2 .contentbox .contentbox_in strong{color:#000000;}
    .contentbox_in a {text-decoration:none;}
    .contentbox_in a strong{color:#13140d; text-decoration:none;}
    .contentbox_in a:hover strong{text-decoration:underline;}
    
    
    .prod_box2 .price .col1{width:auto; float:left; padding-top:4px;}
    .prod_box2 .price .col2{width:auto; float:right;}
    
    
    /************************************************************/
    .background-topic-top{background:url(../images/bg-topic-topx.gif) repeat-x left top; width:100%;}
    .background-topic-top-right{ background:url(../images/bg-topic-top-rightx.gif) no-repeat right top; width:100%;}
    .background-topic-top-left{ background:url(../images/bg-topic-top-leftx.gif) no-repeat left top; height:8px; width:100%;}
    
    .background-topic-bottom{background:url(../images/bg-topic-bottomx.gif) repeat-x left bottom ; width:100%;}
    .background-topic-bottom-right{background:url(../images/bg-bottom-right-1x.gif) no-repeat right bottom; width:100%;}
    .background-topic-bottom-left{ background:url(../images/bg-bottom-left-1x.gif) no-repeat left bottom; height:6px; margin-bottom:0;}
    
    
    
    
    .background-topic-top2{background:url(../images/bg-topic-sidex.gif) repeat-x left top #FFFFFF; width:100%;}
    .background-topic-top-right2{ background:url(../images/bg-topic-top-right-2x.gif) no-repeat right top; width:100%;}
    .background-topic-top-left2{ background:url(../images/bg-topic-top-left-2x.gif) no-repeat left top; height:9px; width:100%;}
    
    
    
    .background-topic-bottom2{background:url(../images/bg-topic-bottom-2.gif) repeat-x left bottom #FFFFFF; width:100%;}
    .background-topic-bottom-right2{background:url(../images/bg-bottom-right-2x.gif) no-repeat right bottom; width:100%;}
    .background-topic-bottom-left2{ background:url(../images/bg-bottom-left-2x.gif) no-repeat left bottom; height:9px; width:100%;}
    
    
    
    
    
    
    
    
    
    
    .background-side-heading_l{ background:url(../images/background-side-heading_l_bgx.gif) no-repeat left top;}
    .background-side-heading_r{ background:url(../images/background-side-heading_r_bgx.gif) no-repeat right top;}
    
    .background-top-right{}
    .background-product-side{}
    .background-product-top-side{}
    
    .background-bottom{ background:url(../images/background-bottom-bg.gif) repeat-x left top; margin-bottom:6px;}
    .background-bottom-right{ background:url(../images/background-bottom-right-bg.gif) no-repeat right top;}
    .background-bottom-left{ background:url(../images/background-bottom-left-bg.gif) no-repeat left top; height:10px;}
    
    
    
    
    
    
    
    .bg-topic-top-right{ background:url(../images/bg-bottom-right-3.gif) no-repeat right top #FFFFFF; width:100%;}
    .bg-topic-top-left{ background:url(../images/bg-bottom-left-3.gif) no-repeat left top; height:12px;}
    
    .bg-topic-bottom-right{ background:url(../images/bg-top-right-3.gif) no-repeat right top #FFFFFF; width:100%;}
    .bg-topic-bottom-left{ background:url(../images/bg-top-left-3.gif) no-repeat left top; height:12px;}
    
    .main{color:#000000;}
    
    
    .background-product-top{ background:#ffffff;}
    .background-product-top strong{color:#000000 !important; font-size:16px !important; line-height:24px !important; font-weight:bold; font-family:Tahoma;}
    .background-product-top a strong{text-decoration:none; color:#ff5304 !important; font-size:16px !important; line-height:24px !important; font-weight:bold; font-family:Tahoma;}
    .background-product-top a:hover strong{text-decoration:underline;}
    .background-product-top a {text-decoration:none;}
    .background-product-top a:hover {text-decoration:none;}
    
    .background-product-bottom{ background:url(../images/productListing-data-bg.gif) repeat-x left bottom #FFFFFF; font-size:11px; color:#434342; line-height:14px;}
    
    
    
    .background-white-left{ background:url(../images/bg-topic-sidex.gif) repeat-y left top #FFFFFF;}
    .background-white-right{ background:url(../images/bg-topic-sidex.gif) repeat-y right top #FFFFFF;}
    
    
    
    .background-white{ background:#FFFFFF}

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. I need some help to move the home and log in from the header please
    By Faeriescraps in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 31 May 2012, 08:41 PM
  2. v139h editing pipe separator menus
    By old_picker in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 16 Feb 2012, 12:20 AM
  3. Adding my phone number under (home-log-in) in the header
    By davidrayandj in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 29 Jan 2011, 11:05 AM

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