在this site,右上方的搜索框无效。
我尝试将z-index添加到父元素:
.col-right-one-thirds {
max-width: 22.38033333em;
padding: 1em;
box-sizing: content-box;
float: right;
z-index: 9999;
}
但这并不能解决问题。
搜索框是Wordpress搜索小部件。
我该如何解决这个问题?
答案 0 :(得分:1)
由于浮动的div .col-full
和.col-right-one-thirds
.col-left-two-thirds
会叠加在标题的顶部
将clear: both
添加到.woocommerce-active .site-header .col-full
.woocommerce-active .site-header .col-full {
position: relative;
clear: both;
}