答案 0 :(得分:1)
为z-index
zone-menu-wrapper
值
并降低z-index
和zone-branding-wrapper
zone-content-wrapper
值
注意:z-index仅适用于定位元素(位置:绝对,位置:相对或位置:固定)
所以你的CSS应该是这样的:
#zone-menu-wrapper {
z-index:100;
position: relative; /* or any desired position */
}
#zone-branding-wrapper, zone-content-wrapper {
z-index:99;
position: relative; /* or any desired position */
}