Here are some stylesheet changes that will work:
First, move the #navEZPagesTop that is above #logoWrapper down to merge with the one that is below #navBreadCrumb, as shown.
Move the #logoWrapper bg to #headerWrapper as shown.
#logoWrapper+.clearBoth {display: none;}
in modern browsers will suppress the clearBoth temporarily.
Code:#headerWrapper { background-image:url(../images/head_bg_2.gif); background-repeat: no-repeat; background-position: 30px center;/*adjust as required*/ } #logoWrapper { width:200px; height:150px; /*background-image:url(../images/head_bg_2.gif); background-repeat: no-repeat; you will probably need to move these into a #headerWrapper rule as shown above*/ float: left; } #logoWrapper+.clearBoth {display: none;} /* this won't work in IE6. in other browsers, it gives a taste of what will happen when you delete the <br class="clearBoth" /> in tpl_header.php */ ... #navBreadCrumb { padding: 0.5em 0.5em; background-color: #ffffff; font-size: 0.95em; font-weight: bold; margin: 0em; } #navEZPagesTop { width: 512px;/*adjust to taste*/ float: right; background: none; font-size: 0.95em; font-weight: bold; margin: 113px 0 00em; padding: 0.5em; }



