Eu am avut rezultate bune cu ele pe site-urile responsive. Dar problema e ca pe mobil baga reclame 320x50, care convertesc foarte prost.

Asa ca folosesc un script pentru a le face de ce dimensiune vreau in functie de dimensiunea viewport-ului.

Scriptul arata cam asa:
Cod HTML:
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
                <script>
                var w = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
                if(w <= 900 && w > 799) { adw = 728; adh = 90; } else { adw = 300; adh = 250; }
                if(w <= 900) {
                    document.write(
                        '<ins class="adsbygoogle"'
                        + 'style="display:inline-block;width:' + adw + 'px;height:' + adh + 'px"'
                        + 'data-ad-client="CONTUL ADSENSE"'
                        + 'data-ad-slot="CODUL RECLAMEI"></ins>'
                    );
                (adsbygoogle = window.adsbygoogle || []).push({});
                }
                </script>