I am looking to adjust the height of the Google custom search bar, and while there are various styling options available through the Google custom search editor, none specifically cater to changing the height.
Currently, the search bar includes top and bottom borders which seem unnecessary and make it appear too bulky.
When placed within my header bar, the Google search bar overlaps due to its excessive height.
Below is the code for the Google search bar:
<script>
(function() {
var cx = '007301268677233961693:36-nzkwdslc';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:search></gcse:search>
If anyone has a solution on how to adjust the height of this search bar to 64px, I would greatly appreciate the assistance.
Thank you in advance for any help provided.