Not a bug Ads overflow

I am not using auto ads and this thread has been classified as not a bug without giving a further comment as to why this happens. At lease tell us why this is not a bug!
 
this thread has been classified as not a bug without giving a further comment as to why this happens. At lease tell us why this is not a bug!
You are attempting to dynamically insert content into an area which isn't wide enough for it.

That's not a bug - you need to ensure any customisation you make is viable.
 
You may need to limit the size and/or use % instead of pixels to define the size.

Try something like this for your AdSense code:

HTML:
<center>
<div class="block" margin-left: auto; margin-right: auto;width: 100%;>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
     style="display:inline-block;min-width:300px;max-width:728px;width:95%;min-height:90px;max-height:200px;height:200px;"
     data-ad-client="ca-pub-xxxxxxxxxxxxxxxx"
     data-ad-slot="xxxxxxxxxx"
     data-full-width-responsive="true">
</ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>   
</div>
</center>
 
Top Bottom