You can prevent anchor ads from appearing at the top of the user's screen by modifying your ad code. After you've made this change and saved your ad code, anchor ads will only appear at the bottom of your pages. Keep in mind that by disabling this feature you may decrease your potential earnings. Our experiments show that anchor ads perform better at the top of the user's screen.
To disable anchor ads at the top, add theoverlays: {bottom: true}
parameter to the ad code on each of your pages with anchor ads.
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1234567890123456" crossorigin="anonymous"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-1234567890123456",
enable_page_level_ads: true,
overlays: {bottom: true}
});
</script>
</head>
Note: If you're using the AdSense code, you'll need to replace your ad code with the old Auto ads code shown in this example.