How to Position with CSS or Quick AdSense

0

I have a Recent Site and I added Quick AdSense, once it was approved, but the Ads misconfigured or misconfigured the Pages, so I found an answer to a question here in StackOverflow in English, which I do not know much about, Unfortunately I did not save the Link of this Respopsta, where they said to put the Adsense Code inside a DIV with an ID and Apply Style Rules, which I did, changing some details as I show below:

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

Since yesterday I made these changes, it seems that everything is OK, but still, I wanted to ask someone who knows more about me than CSS, if something is still missing in order to work better and in all the browsers of the Site : link Thank you in advance!

    
asked by anonymous 29.06.2017 / 11:06

1 answer

0

It seems that it was some Javascrip Calendar Compatibility Problem that I had on the Sidebar, I passed the said one to a Pop-up using Onclick and since then it seems to me that everything is OK now! Maybe it was also caching my browser! So, for someone facing the same issues I had, there's the hint:

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!
    
01.07.2017 / 11:41