Hello, I am working on site here... epolystarfilms.com
The nice menus dropping down from above are layered underneath
the view cycle display... how do I reverse this so menus stay on
top when they drop down?
thanks in advance for any help.
Hello, I am working on site here... epolystarfilms.com
The nice menus dropping down from above are layered underneath
the view cycle display... how do I reverse this so menus stay on
top when they drop down?
thanks in advance for any help.
Comments
Comment #1
travisc commentedtry relative positioning your menu using CSS, then give it a z-index that positions it above your view.
#menu {
position:relative;
z-index:101;
}
Comment #2
jboeger commentedThanks for your reply. The method did indeed work for me.
Comment #3
eabrand commented