J'essaie d'utiliser Google Custom Search (Business Edition) sur mon site. Je n'utilise pas l'iFrame mais l'élément personnalisé. J'ai sélectionné un thème et tout semble correct dans tous les navigateurs sauf IE6. Tous les résultats de recherche utilisent le CSS de promotion.
Mise à jour - Code affiché
<div id="cse-search-form" style="width: 100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1');
google.setOnLoadCallback(function() {
var customSearchControl = new google.search.CustomSearchControl('XXXXXXXX');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
options.setSearchFormRoot('cse-search-form');
options.setAutoComplete(true);
customSearchControl.draw('cse', options);
}, true);
</script>
<link rel="stylesheet" href="http://www.google.com/cse/style/look/minimalist.css" type="text/css" />
<div id="cse" style="width:100%;"></div>