Adding Google Custom Search Engine to RSD

When adding a Google Custom Search Engine box to your Responsive Site Designer page, some styles for the search box may get overridden by styles found in our framework. To correct this, add this block of code to each page that contains a Google Search Box.

The custom styles only need to be added once per page, so if you are using more than one search box, place this code with the first one on that page.

<style>
.gsc-control-cse * {
margin: 0;
padding: 0;
max-width: none !important;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
</style> 
Custom styles added to HTML Element