Responsive Google Ad doesn't show up on my website - html

I added a responsive Google Ad to our game's website, which is a simple static bootstrap based site:
http://dealoround.com which will resolve to
https://mrcsabatoth.github.io/DealORoundWebsite/
My problem is that no Ad shows up. First I put the Ad code at the end of the HTML. Then I thought that maybe it doesn't show up, because I'm just running the development version of the website from my local machine, but my AdSense account doesn't have any restrictions on who can display my ad unit. So I pushed my changes to GitHub, but still no luck. Finally I tried to move the code to the footer, also didn't help.
When I inspect the DOM, the ins element is there, but hidden. If I say window.adsbygoogle.push({}) to try to get it alive, nothing changes, but the function returns the value 2, whatever that means (does anyone know?).
I'm total newbie to AdSense. All helps are welcome.

I can see your ad perfectly, but only after I have paused 'AdBlock' on my browser.
See the below screenshot of your site:
Here is a short tutorial on how to disable AdBlock - http://www.wikihow.com/Disable-Adblock

Related

Google image bug, transparent after clicking on an image

I can't find anybody facing the same problem as mine.
Every time I click an image on google image, suddenly the whole page disappear, but I'm still able to click things just like everything is still there.
I already turn off all extension, use incognito mode, after finally I try to use inspect element, and found attribute stating "Opacity: 0" on the body. And after unchecking the box (Quick disable attribute in inspect element chrome) everything shows up again.
I'm so confused on why this is happening.
Does anyone have ever facing the same problem?
Or how do I fix it?
It's so frustrating, because I have to refresh the page, every time I click on an image, or switch between images
so I was having this one. in the end, it was a virus.
In my case, it was showing an AD screen on the main google page, and in the sources>gstatic.com it had a different source which also was in a [unknown] source.
dug a bit up and discover some adware was using gstatic as a proxy to show ads on all browsers.
I solved it by running malwarebytes, it found it pretty quickly and solved it for me.
Posting this here because I'm hoping it helps people who search for this issue in the future.
part of the log

Google PageSpeed abgc div id

I trying to pass Google PageSpeed Insights validation, but I have 1 issue, in User Experience section:
The tap target <div id="abgc"></div> is close to 1 other tap targets.
I searched my whole page, but I cannot find this code.
Finaly I realise that id abgc is google ad sense div class for arrow in top right box on ad. But maybe I'm wrong?
How to fix this?
There is no way to fix this - PSI oddly enough also counts Adsense and Analytics code as issues under "Leverage browser caching", "Minify JavaScript" and a couple others as well. Their code isn't cached or minified from their side unfortunately, and the CSS they use for some formats of their Adsense ads do create tap target niggles.
The end result is that getting 100/100 when you're using Adsense or Analytics is - for all intents and purposes - impossible until the wizards at Google exclude their own code from the criteria.

Dashboard & Pubcenter confusion

I made a Windows Phone app, created a pubcenter account and made an ad unit.
I pasted the ApplicationId & AdUnitId in my code and published the app.
It's live now
http://www.windowsphone.com/nl-be/store/app/weird-funny-facts/6353f4b4-cc80-47be-bd79-bc5d834d0d8f?signin=true
Today I checked my dashboard and in my settings I saw this:
pubCenter Application ID
None
Ad units
None
Shouldn't the ID's be filled in? I tried editing my details, but I could only make new ad units from that point.. which I don't understand? Why would you upload your app, then make ad units, put these in your code, rebuild and reupload?
Won't the ads work without the information filled in? Can anyone enlighten me :)
screenshot:

Chrome Extension Inject for ad blocking

I want to block an iframe that contains an ad in this chrome extension i'm developing. I tried using CSS and Javascript to inject code that would work, but haven't had any luck. I know there are adblockers available, but i want to remove the ad on my side for convenience. Thanks in advance.
You need to register a beforeload event handler in your content script. See documentation of this event, in short you check event.url and call event.preventDefault() if you want to block. Please note that there is currently a severe bug associated with this event: https://bugs.webkit.org/show_bug.cgi?id=45586. Just have a look at the number of bug reports this causes for the Adblock extension: http://code.google.com/p/adblockforchrome/issues/detail?id=3701 (Adblock Plus also got tons of bug reports, these aren't as centralized however).

AJAX message under google ads

I'm building a ASP.NET application using C#. On my website, I also use AJAX toolkit from Microsoft. When error message are displayed, they appear under the Google ads.
It's very annoying because before adding the ads, everything was working good. In fact, it work perfectly but I'm searching for a way (probably CSS) to put the error message on top of the ads OR to put the ads from Google in the background.
With all the people having Google ads on their site, I hope someone has found a solution to this problem!
un tested solution.
put your adsense code in a div. add style to you div with z-index:-1. Add z-index:3 or above to your error container. In theory this will make google ads appear under you error message.
I believe the Google Ads code is specifically designed to make sure it is on top (to prevent "cheating the system" by obscuring or hiding the ads while still displaying them).
Your best bet is probably to try to alter how your error messages are displayed so that they don't go outside of the "content" area of the page into the ad area - perhaps make them appear below the input box instead of to the right of it, or something similar.