我设法自定义了谷歌网站搜索搜索字段和按钮的样式,但是我不知道如何摆脱搜索按钮上显示的“搜索”文本。
基本上,我已经用图像替换了基于 css/文本的按钮,但是正如您在下面的图像中看到的那样,它上面仍然有“搜索”文本。
无论如何要摆脱这个还是我必须求助于做类似的事情text-indent: -9999px;
?
我的按钮 CSS 是:
.cse input.gsc-search-button,
input.gsc-search-button {
width: 103px;
min-width: 103px;
height: 36px;
min-height: 36px;
border: none;
background: url('../images/search-btn.png') left top no-repeat;
}
按钮图片:
网站搜索代码:
<div id='cse' style='width: 100%;'>Loading</div>
<script src='//www.google.com/jsapi' type='text/javascript'></script>
<script type='text/javascript'>
google.load('search', '1', {language: 'en', style: src="<?=ROOT_URL?>css/default.css"});
google.setOnLoadCallback(function() {
var customSearchOptions = {};
var customSearchControl = new google.search.CustomSearchControl('xxxxxxxxxxxxxxxxxxxxxxxxxx', customSearchOptions);
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
customSearchControl.draw('cse', options);
}, true);
</script>