How to move anchor ad position from top to bottom of screen
In the following article I will share a little about how to move the anchor ad position from the top to the bottom of the screen. Before that, do you know what Google Ads Anchor ads are.
What is Anchor ad? Anchor Ads are a type of mobile ad that sticks to the edge of the user's screen and can be easily closed. Then, how to move the position of the anchor ad.
Here's how and steps to move it to the bottom of the screen, you just need to add the code below:
overlays: {bottom: true}
- Below is an example of applying it to your auto Ads code
<script async='async' src='//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'/>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-0000000000000000",
enable_page_level_ads: true,
overlays: {bottom: true}
});
</script>
- Add the code above marked in red
That way anchor ads on mobile will always appear below the screen. And if at any time you want to display it on the screen again, you can simply delete the code that has been marked.
Can editing the adsense code have an impact on our adsense account?
Of course not. Because this is a modification that is allowed by Google and does not violate at all. Because the adsense guidelines have made an article and that we can change or edit the position of the anchor ad above the screen or below the screen. For more details, my friend can visit the Google support page .
Maybe that's all I can explain in this article about how to move the anchor ad position above and below the edge of the screen.