When I click a link the font-size does not get bigger on iOS but on android it does work. How do I get it to work
What I have tried:
ontouchstart="" in the body tag
jQuery:
$(".primary-menu li a").on('click', function() { $(this).css("font-size", "15px"); }); CSS:
.primary-menu li a:focus { font-size: 15px !important; } Neither the jQuery or CSS Works on the iOS only Android
Thank You
tabIndex="0"to your.primary-menuobject. This has been already addressed here: stackoverflow.com/questions/5832436/…