Problem with Drop-down nav

Hello I had problem with my nav menu if you hover over “Why Auction” and try to go to Recreational the menu will despair.
here is the link

NORTH AMERICAN AUCTIONEERS - Home

Hi,
The problem you are having is due to the relative positioning on your #intro div, remove it. It creates a new stacking context and it is layering above the last link of the tallest dropdown. I see no reason for it being there, a lot of people will use relative positioning when they are unaware of what it actually does.

You also need to get rid of that empty div your using as a spacer, that’s what margins are for. Just set 65px top margins on the two floats below your navbar.

<div id=“space”></div>

#intro {
float:left;
margin:65px 0 0;
padding:5px;
/position:relative;/
width:593px;
}
#tabs {
float:right;
font-family:Arial,Helvetica,sans-serif;
font-size:14px;
margin:65px 5px 5px;
padding:5px;
width:320px;
}

thank you for your help Rayzur

Your Welcome :slight_smile: