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?
Found the solution just added the lines below on my stylesheet.
@media screen and (max-device-width: 480px){
body{
-webkit-text-size-adjust: none;
}
}