Can't you changed the positions of the DIVs
like this:
<div id="menu"></div>
<div id="map"></div>
If not you could go something like this:
<div id="map"></div>
<div id="menu"></div>
#menu
{
position: absolute;
top: 10px; /* adjust value accordingly */
left: 10px; /* adjust value accordingly */
}
Update 2
Cross-browser transparency style:
.dropSheet
{
background-color: #000000;
background-image: none;
opacity: 0.5;
filter: alpha(opacity=50);
}
Just apply the class dropSheet
to the element you want to make transparent.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…