2015-04-29 69 views
1

我使用layout -> add a gadget -> html/javascript將自定義谷歌搜索嵌入我的博客網站。帶透明背景的谷歌自定義搜索

但是,搜索框有一個白色背景。我怎樣才能使背景透明?

Copying the code for the google search.

The google box has a white background.

enter image description here

正如你在過去的截圖中看到,有一個搜索框的背景顏色的選項。有沒有其他辦法可以讓它透明?

+0

看看css? – Huey

+0

Blogger CSS https://support.google.com/blogger/answer/175740?hl=zh_CN可以演示詳細信息如何更改,如果可以? – user3739135

+0

找到包含google自定義搜索的'div',然後更改'background'屬性。 – Huey

回答

1

溝通不暢! U所謂的專業人士應該簡單地說, 「請參閱Google自定義搜索&單擊CSS源文件。」

搜索'background-color'然後更改: background-color:transparent;

這就是答案! enter image description here enter image description here

0

這不是具體到Blogger,但工程的常規非博客網頁上。只需將以下添加到您的網頁的頭部分:

<style> 
    .cse .gsc-control-cse, 
    .gsc-control-cse { 
     background-color:transparent !important; 
    } 
</style> 

您還可以看看full CSS page of Google's default styles that can be overridden here。當您覆蓋任何特定的樣式時,請確保使用!重要屬性,如上所示。