如何更改谷歌自定义搜索水印

发布于 2024-12-15 07:11:07 字数 64 浏览 2 评论 0原文

我有谷歌自定义搜索,默认情况下搜索框有背景图像,我可以删除该图像,但无法替换为我的图像。那么有没有办法做到这一点。

I have google custom search, by default the search box has got background image, I can remove that image, But not able to replace with my image. so Is there a way to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

情释 2024-12-22 07:11:07

将其添加到我的 CSS 中对我有用:

.cse input.gsc-input, input.gsc-input {background-image:none !important;}

Adding this to my CSS worked for me:

.cse input.gsc-input, input.gsc-input {background-image:none !important;}
治碍 2024-12-22 07:11:07

是的!你可以做到这一点!

请找到特定的 id 或 css,然后根据该 id 或 CSS 使用 CSS,并确保在末尾添加 !important ,它将适合您。

Yes! You can do this!

Please find particular id or css for that and then use CSS according to that id or CSS and make sure you add !important at end it will works for you.

凉城已无爱 2024-12-22 07:11:07

要删除 Google 自定义搜索水印,您需要运行 java-query 无限循环代码,但无法通过添加一次性运行代码来完成,因为每次您单击搜索输入字段时,他的代码都会从服务器端重新运行,并且水印将重新出现。

下面列出了您需要执行的确切代码,但要获得所需的结果,您必须从链接 jquery.com download/ 导入 Jquery 库文件并将其链接到您的页面,

以将其链接到您的页面。

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>

隐藏水印的实际代码是。

<script>
    $(document).ready(function() {
        setInterval( function() 
        {
            $("#gsc-i-id1").css("background-image","none")
        },1/*Time*/);
    });
</script>

因为搜索框的 ID 是“ gsc-i-id1 ”,所以即使您单击并取消单击该字段,代码也将起作用。

请根据您的喜好调整函数的时间,以获得更好的性能,最好将其保持在 100 英里秒以内,

通过单击下面的链接检查代码的实时性能。
http://jsfiddle.net/atulc007/tHQAD/1/

To remove the Google Custom search watermark you need to run a java-query infinite looped code it can't be done by adding a one time running code since every time you will click the search input field he code will rerun from the server side and the watermark will reappear.

the exact code you need to do is listed below but to achieve the desired result you must import Jquery liberary file from link jquery.com download/ and link it to your page

to link it to your page do so.

<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>

the actual code to hide watermark is.

<script>
    $(document).ready(function() {
        setInterval( function() 
        {
            $("#gsc-i-id1").css("background-image","none")
        },1/*Time*/);
    });
</script>

because the ID of the search box is " gsc-i-id1 " so the code will work even if you click and unclick the field.

Please adjust the time of the function to your preference for better performance better keep it less than 100 mile seconds

check the live performance of code by clicking the link below.
http://jsfiddle.net/atulc007/tHQAD/1/

寂寞清仓 2024-12-22 07:11:07

您必须自定义代码中给出的 GCSE。要详细说明,您必须在代码中选择此网址 - “http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en”。然后在浏览器中粘贴并搜索该网址。您将获得该 java 脚本的源代码。在其中找到图像 .gif 链接并替换为您的图像并将其另存为 .js 文件并替换链接并上传。希望你会喜欢:)

You have to customize GCSE which is given in your code. To explain in detail, you have to select this url in your code - "http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en". Then paste and search this url in your browser. You will get the sorce code of that java script. In that find an image .gif link and replace with your image and save it as .js file and replace the link and upload. Hope you will enjoy :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文