Search code examples
iphonecsswebkitadsensemobile-browser

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


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?


Solution

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

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