Question

Does anyone know how to remove the extra branding on the google custom search?

they've added a button and other things like text that says "gadgets powered by google".

there has to be a way to pipe the CSE data into a normal form, right?

http://www.google.com/coop/cse/

Was it helpful?

Solution

I guess the normal way is to buy their Business edition ;)

Still there seems to be some tweaking possible: this custom search form does not look bad.

OTHER TIPS

You can make some tweaks by simply adding to your own CSS. The best part about these tweaks is that you don't need to be a paying customer!

Change font size and remove Google branding:

input.gsc-input {
   font-size: 11px; 
   height: 16px !important;
   background: none !important;
}

Change autocomplete font size:

.gsc-completion-container table {
    font-size: 11px;
}

Change border radius of the search box:

.gsc-input-box {
    border-radius: 3px !important;
}

*** Hide Ads (my personal favorite)

.gsc-adBlockVertical, .gsc-adBlock { /* this hides both the top and right ad blocks*/
    display:none;
}
.gsc-thinWrapper { /* this gives you use of the whole block, as opposed to 69% google gives*/
    width: 100%;
}

well the business edition's main benefit is that the search results don't have ads in them. so really google shouldn't care if people are modding the search form on the free service since it will still bring them ad revenue.

i looked at the page you linked to, it might out of date cause their latest code spits out javascript, so nothing's really clear.

i think there's a way to grab my api code and pop it into a normal form script.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top