HI,
if you look at my page www.curvesandcorsets.com/catalog you will see that the header wrapper is on three lines. If you add something to the cart it then goes to 4 lines.
Is there anyway to make it just one line?
Thanks,
John
HI,
if you look at my page www.curvesandcorsets.com/catalog you will see that the header wrapper is on three lines. If you add something to the cart it then goes to 4 lines.
Is there anyway to make it just one line?
Thanks,
John
It appears that you have edited a copy of tpl_header.php and have closed #navmainWrapper too early
Probably and extra </div> in there
Added
Actually this highlighted might be an issue in your stylesheet
Code:#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper { margin: 0em; background-color: #ff73ff; font-weight: bold; color: #ffffff; height: 1%; width: 980px%; }
Last edited by kobra; 18 Jun 2011 at 05:40 PM.
Zen-Venom Get Bitten
The issue is withif I take it out, the problem goes away. Simply taking out the /div dosen't fix it either. Any thoughts on how to keep the code in?<!-- bof languages/currencies header display -->
<div id="navCurrenciesWrapper" class="forward">
<?php
if (HEADER_LANGUAGES_DISPLAY == 'True') require(DIR_WS_MODULES . 'header_languages.php');
if (HEADER_CURRENCIES_DISPLAY == 'True') require(DIR_WS_MODULES . 'header_currencies.php');
?>
</div>
<!-- eof languages/currencies header display -->
Ok I downloaded the "currency dropdown with currency code in footer" add on instead but can't actaully get it to sit in the top of the header. Any ideas?
The reason that the header "splits" is that there is a <br class="clearBoth"> imbedded in the cartCountTotal div. If you add the following to your stylesheet, it will clear up:
Code:.cartCountTotal br { display: none; }