align a div below another.
hello guys,
am using a .net master page and trying to align a div with a nested navigation link above another div.
Such that I can add a show/hide jscript event below the navigation.
However when I add the div below, called Main_Bottom It does not appear immediately below the navigation
Please advice
many thanks
Code:
<div id="MainMenu" >
<div id='cssmenu'>
<ul>
<li class='active '><a href='index.html'><span>Home</span></a></li>
<li><a href='#'><span>Products</span></a></li>
<li><a href='#'><span>About</span></a></li>
<li><a href='#'><span>Contact</span></a></li>
</ul>
</div>
<div id="Main_Bottom">Text goes here</div>
</div>
M