Glad it's all working now! You could move the Home and Login to the ez-pages bar, but when logged in, the Login link changes to Logout and My Account links. That behavior wouldn't translate. Also, when there is something in the cart, Shopping Cart and Checkout links appear. This would make the lower bar too crowded.
I think you are best off leaving the header nav where it is, and making the background blend with the rest of the header. These stylesheet changes will do that:
Code:
#headerWrapper {
background-image:url(../images/head_bg_2.gif);
background-repeat: no-repeat;
background-position: center 29px;/*changed 12-24*/
height: 191px;
}
#logoWrapper {
width:200px;
height:150px;
float: left;
clear: both;
}
#logoWrapper+.clearBoth {display: none;} <-------delete this now - you don't need it anymore
/*this is temporary and lets the ez-pages bar sit next to the logo -
you need to delete the <br class="clearBoth" /> in tpl_header.php as advised above.*/
...
/*navigation*/
...
#navSuppWrapper, #navCatTabsWrapper {
margin: 0em;
background-color: #abbbd3;
background-image: url(../images/tile_back.gif);
padding: 0.5em 0.2em;
font-weight: bold;
color: #ffffff;
height: 1%;
}
#navMainWrapper {/*separate this selector to its own rule 12-24*/
background: #D1E6FB;
padding: 0 0.2em;
font-weight: bold;
height: 29px;
}
...
#navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #00aa00;/*changed 12-24*/
white-space: nowrap;
}