CSS to remove the "Search Google" button under "Advanced Search"?

JellyBelly at 04h39
04
Dec
2011
Is there any CSS code I could use to make the "Search Google" button (on the "Advanced Search" page) disappear? The Google search doesn't even work on my site because it's a closed site, so only the "regular" forum search function works.

Thanks.
1 Guest, on 04/12/2011 at 07h17
Try:
Code:
input.button2[value="Search Google"]{
display: none !important;
}

or:
Code:
input[value="Search Google"]{
display: none !important;
}
2 JellyBelly, on 04/12/2011 at 20h12
Awesome! The first one worked.

Thanks a lot!! Smile
3 Sanket, on 04/12/2011 at 20h50
Topic Solved & Locked
Similar topics
Add Google Search to your Webpage Add a google search to your html page. Hello Everyone Here in this tutorial we have provided a code to add a google search box which can search for contents on your website through Google as well as on normal
I can barely see the text in the Pull down menu for SEARCH OPTIONS Search in: Can someone tell me where I need to go in CSS to change the color code? I use PHPbb3
Hi, I want to add my google custom search to my forum, I have already got the code, but I want to make it so it replaces the proper search bar, with my custom page, I know how to change the URL, but when I create a new HTML page, then click preview, it
See also
more_less
Informations

3 Replies For the topic :
"CSS to remove the "Search Google" button under "Advanced Search"?"

This topic has been viewed 1358 times.

Last message :
04/12/2011 at 04h39 by "JellyBelly"