You can do this with the following code, assuming you put this line between the elements and it is the first on the page. If this is not the case, customize according to your convenience.
NSString *strFontIncrease = [[NSString alloc] initWithFormat:@"document.getElementsByTagName('span')[0].style.webkitTextSizeAdjust= '%f%%'",yourFontValue]; [webView stringByEvaluatingJavaScriptFromString:strFontIncrease]; [strFontIncrease release];
Check out and let me know if there is any doubt.
source share