The Google AdSense plugin is used. The ads look good on desktop viewing, but on mobile they overlap website blog content text. Plus little blue dots appear.
The issue might be that the div (the parameters of the ad unit) containing the ad is wider than 336 pixels and so the responsive ad is trying to fill to the max width of the div. If so, is there a ‘quick css’ way to increase the height of the div to greater than 280 pixels? Or what else can be done to make sure that the ads don’t overlap content on mobile viewing?
Hey m,
Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
Andy
Thanks. Here it is. View on mobile iPhone to see overlapping ads.
Hi,
use this code inside Quick CSS field:
.googlepublisherpluginad {
padding-bottom: 31px;
}
and adjust as needed.
Best regards,
Andy
Yes! Perfect, thanks so much!
Hey!
Regarding dots, please add following code to Quick CSS as well
#top #wrap_all ins:before {
display: none;
}
Best regards,
Yigit
Awesome, thanks!