Nowadays, most websites come with a search box to improve surfing experience. To make your website looks good, beside having a nice looking theme, you would need a fancy search box to replace the classic ones.

In this example, I will use this as my search box.
Make sure the background color outside the search box is the same as your design. Now crop the whole search box out.
result: 

The picture above explained all.
<div id="searchwrapper"><form action=""> <input type="text" class="searchbox" name="s" value="" /> <input type="image" src="THE_BLANK_SUBMIT_BUTTON_IMAGE" class="searchbox_submit" value="" /> </form> </div> |
Replace the “THE_BLANK_SUBMIT_BUTTON_IMAGE” with the image at step 3.
#searchwrapper { width:310px; /*follow your image's size*/ height:40px;/*follow your image's size*/ background-image:url(THE_SEARCH_BOX_IMAGE); background-repeat:no-repeat; /*important*/ padding:0px; margin:0px; position:relative; /*important*/ } #searchwrapper form { display:inline ; } .searchbox { border:0px; /*important*/ background-color:transparent; /*important*/ position:absolute; /*important*/ top:4px; left:9px; width:256px; height:28px; } .searchbox_submit { border:0px; /*important*/ background-color:transparent; /*important*/ position:absolute; /*important*/ top:4px; left:265px; width:32px; height:28px; } |
Basically what’s going on :
#searchwrapper wrap the whole search box, carrying the whole search box image as its background image.
.searchbox is the text area to enter search keyword, given a transparent background and no border.
.searchbox_submit is the submit button, also given a transparent background and no border.
NOTE:
Both .searchbox and .searchbox_submit have been given an absolute position, you should modify their position, width and height according to your own search box.

Feel free to reply here


My day got a hundred times
better after finding this article.
Thanks for posting this!
Very useful. Thank you so much !
.-= Dindigul´s last blog ..Flash News =-.
Hi,
Very Very thanks. It helped me a lot for developing my new version of site for Topincoupons.com
Once again very thanks,
Keep your good work.
Hi,
Very Very thanks. It helped me a lot for developing my new version of site for Topincoupons.com
Once again very thanks,
Keep your good work.
.-= Kish´s last blog ..Save $50 when you spend $250 or more =-.
Do you have a live sample of it anywhere?
I’d love the test it out in a few browsers.
Cheers
@Rich, in fact all my premium themes have it , eg : http://zenverse.net/?themedemo=exult
Great tutorial. exactly what i needed.
Thanks
this is fantastic !
Hey, it worked great in other browsers but in IE7, the image “.search_submit” is grayed with asterisks. on the whole, great tutorial…
Great tutorial… where can I get the script to have this work on a site, will this mask Google’s search box?
I appreciate any help thanks!!
I am not sure because as I know, we are not allowed to edit any codes given by google, it is against the TOS.