16th April 2014, 12:22
#6
1 out of 1 members found this post helpful.
Cele mai mari pierderi le-am avut cand am ascultat de sfatul lor. Cu privire la reclamele responsive eu am o tema care se muleaza pe dispozitive mobile si ctr de 5 % la orice reclama. Nu vreau mai mult si nu o s schimb reclamele.
Nimic.
16th April 2014, 12:32
#7
1 out of 1 members found this post helpful.
Le-am incercat si eu o luna si am avut venituri mai mici cu 30%. Am revenit la varianta anterioara.
16th April 2014, 21:54
#9
1 out of 1 members found this post helpful.
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>