1

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?

john
  • 83
  • 8

2 Answers2

0

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?

Community
  • 1
  • 1
Kyle
  • 60,843
  • 27
  • 138
  • 150
0

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

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