Quote Originally Posted by DatinBridal View Post
Hello,

First off I have to say I love this menu, and thanks for the great help. I have read almost every post and have found many answers to the questions I have had!

I have not found out if it's possible to move the menu higher on my page. I would like it to actually be on my header. I have a space between my header and sidebox and and looking to how to get rid of it.

Basically, I need the header menu to be on the header and the sidebox to meet the header with out a gap.

Is it possible to move either of these?

Thanks for the help.
Dave
http://datinbridal.com
Open up your includes/templates/YOUR_TEMPLATE/commom/tpl_header.php and change and instances of

<br class="clearBoth" />

to

<div class="clearBoth"></div>

Then replace your .clearBoth in your stylesheet.css with this:

.clearBoth {
clear:both;
height:0;
font-size:0;
line-height:0;
margin:0;
padding:0;
}

Let me know how that works out.