我在论坛vbulletin中使用谷歌cse,它运行良好,但当我更改为新主题(样式(时,谷歌cse的搜索按钮看起来很小,但当单击时,它运行正常。我在表格上的不同地方更改了谷歌cse,但仍然有相同的结果那么请问如何解决这个问题呢?代码:
<script>
(function() {
var cx = 'xxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxx';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
https://i.stack.imgur.com/cySBd.png
我终于在这里找到了答案,谢谢,效果很好只是我把这个css代码添加到我的风格中:
.cse .gsc-search-button input.gsc-search-button-v2, input.gsc-search-button-v2 {
background-image: inherit;
box-sizing: content-box;
-moz-box-sizing: content-box;
}