Google Adsense on Iphone's browser display issues. '-webkit-text-size-adjust' for google adsense on iphone browser

StackOverflow https://stackoverflow.com/questions/13417762

Question

I am having display issues with google adsense on Iphone browers. Title becomes smaller; descrption becomes larger, etc.. Is there a way I can implement '-webkit-text-size-adjust: none;' to Google Adsense (this is placed on an iFrame)? Or are there other ways to get this resolve?

Was it helpful?

Solution 2

Found the solution just added the lines below on my stylesheet.

@media screen and (max-device-width: 480px){
   body{
      -webkit-text-size-adjust: none;
   }
}

OTHER TIPS

There is no way you can target something that is in an iframe if its content is served from another domain.. It's just impossible.

You can read this older question for more info: How to apply CSS to iframe?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top