How to Position Quick Adsense with CSS

Asked

Viewed 56 times

0

I have a Recent Site and I added Quick Adsense after it’s been approved, but the Ads have defaced, or rather defaced, the Pages, so I found an answer to a question here at Stackoverflow in English, which I don’t know much about and, unfortunately I did not keep the Link of this Reply, where they said to put the Adsense Code inside a DIV with an ID and Apply Rules to Style, what I did, changing some details as shown below:

#adsense {
position: absolute;
right: 0px;
width: 100%;
top: 150px;
}

Since yesterday I made these changes, it seems to me that everything is OK, but still, I wanted to ask someone who knows more than I do CSS, if there is still something missing to work better and in all browsers of the Site: https://www.publicacoes-digitais-index.com/ Thank you very much, from now on!

  • It seems there’s still something missing for Footer, some Pages don’t show the latest Footer Ad, some Help?

1 answer

0

It seems that it was some Javascrip Calendar Compatibility Problem that I had in the Sidebar, I passed the said whose for a Pop-up through Onclick and since then it seems to be all OK now! Maybe it was my browser’s cache too! So, for someone facing the same problems I’ve had, here’s the tip:

HTML

<div id="adsense">
Código do Quick Adsense Aqui!
</div>

CSS

#adsense {
position: absolute;
right: 0px;
width: 100%;
top: 150px;
}

E Funcionou para mim!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.