Take a look at this, it may work better in your case:
http://www.dynamicdrive.com/style/cs...rizontal_blue/
To get the menu over the flash, try using z-index, as seen in the code below, a red box is over a blue box:
Code:
<style type="text/css">
#div1 {
position: absolute;
width: 100px;
height: 100px;
background-color: blue;
left: 200px;
top: 100px;
}
#div2 {
position: absolute;
width: 200px;
height: 200px;
background-color: red;
left: 210px;
top: 120px;
}
</style>
<div id="div1"></div>
<div id="div2"></div>
If we want to get that blue box over the red, just put in some z-index:
Code:
<style type="text/css">
#div1 {
position: absolute;
width: 100px;
height: 100px;
background-color: blue;
left: 200px;
top: 100px;
z-index: 1;
}
#div2 {
position: absolute;
width: 200px;
height: 200px;
background-color: red;
left: 210px;
top: 120px;
}
</style>
<div id="div1"></div>
<div id="div2"></div>
Bookmarks