0

Ads are not showing on my website when i open it on desktop but showing well on smart phones as I am using "sahifa v4.0" wordpress theme.

My website is http://itsmyfun.net . One Ad is in header section and one is just before footer section. Third is before the article.

Kindly guide me how can i solve this problem?

Ads are visible at mobile devices you can check here: http://mattkersley.com/responsive/

Roman C
  • 47,329
  • 33
  • 60
  • 147

1 Answers1

1

You have some problem in the part of the HTML embedding the Ads. Take a look:

<script type="text/javascript">
var adWidth = jQuery(document).width();
google_ad_client = "5467995485431950";
if ( adWidth >= 768 ) {
  google_ad_slot    = "";
  google_ad_width   = 728;
  google_ad_height  = 90;
} else  if ( adWidth >= 468 ) {
  google_ad_slot    = "";
  google_ad_width   = 468;
  google_ad_height  = 60;
}else {
  google_ad_slot    = "";
  google_ad_width   = 300;
  google_ad_height  = 250;
}
</script>

You should cleanup the first google_ad_slot, that is related to big screens. Here's why it works on smaller screens (you can also see for yourself if you reload the page with the window resized)

mat_jack1
  • 1,662
  • 1
  • 14
  • 14