Customizing Google’s Search box in WordPress [closed]

This isn’t really a wordpress specific question, but you’ll have to start by adding the classes you have in your search form to the Google code, until you get the results you desire. Without seeing all of your backend, it’s hard to say what you need to do exactly, but this should get you on the right track. You probably don’t need the my-nav-menu-search class added to the form, since on your theme it’ll be in the nav-menu-search.

  <form action="http://www.lifewithgremlins.com/search/" id="cse-search-box" class="my-nav-menu-search search-form" >
  <div>
    <input type="hidden" name="cx" value="partner-pub-5*my pub number*" />
    <input type="hidden" name="cof" value="FORID:10" />
    <input type="hidden" name="ie" value="UTF-8" />
    <input type="text" name="q" size="55" class="search-field" />
    <input type="submit" name="sa" value="Search" class="search-submit" />
  </div>
</form> 
<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>