无法使用鼠标

时间:2016-06-04 03:16:10

标签: html css

this site,右上方的搜索框无效。

我尝试将z-index添加到父元素:

.col-right-one-thirds {
    max-width: 22.38033333em;
    padding:  1em;
    box-sizing: content-box;
    float: right;
    z-index: 9999;
}

但这并不能解决问题。

搜索框是Wordpress搜索小部件。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

由于浮动的div .col-full.col-right-one-thirds

,div .col-left-two-thirds会叠加在标题的顶部

clear: both添加到.woocommerce-active .site-header .col-full

.woocommerce-active .site-header .col-full {
    position: relative;
    clear: both;
}