Remove conflicting styling - Bootstrap & Google Custom Search

后端 未结 4 1087
孤街浪徒
孤街浪徒 2021-01-13 05:46

Take a look at the picture below from my website: www.kokorugs.com

I am using Boostrap and I believe that there are some conflicting CSS styles.

The problem

4条回答
  •  孤街浪徒
    2021-01-13 06:26

    for complete correction of the conflict use

    input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
      -webkit-box-shadow: none;
      -moz-box-sizing: content-box;
      box-shadow: none;
    }
    
    
    input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus {
      box-sizing: content-box;
      line-height: normal;
    }
    

提交回复
热议问题