Some updates do not work on other browsers
Some updates do not work on other browsers
Some updates do not work on other browsers
I think I figured out the issue: I’m using the Bourbon Neat sass library and it adds a line: @include font-feature-settings(“kern”, “liga”, “pnum”); that IE apparently doesn’t like. I removed this mixin include and the IE problem went away.
Edge browser (and Chrome and Firefox too), are using the Windows screen size and display ratio to render. I have Lenovo Yoga 2 Pro laptop with a screen resolution of 3200×1800. If I set display ratio to 100%, then browser displays website smaller (website is 1200px wide, for instance, and the rest to 3200 is … Read more
You can’t, there’s a filter to convert everything to jpeg on upload or everything to webp, but short of installing a 3rd party service to figure it out on the fly there is no fallback solution that serves webp to some and jpeg to others I thought wordpress would manage this but it does not. … Read more
According to a path you provided moz-extension://<hash>/icons/512.png, this icon comes from Firefox translation extension.
I would suggest using that plugin, but slightly modifying it for your needs. For example, you can find the code block in php-browser-detection.php that does the IE7 check: function is_IE7 (){ $browserInfo = php_browser_info(); if(isset($browserInfo[‘browser’]) && $browserInfo[‘browser’]==’IE’ && $browserInfo[‘majorver’] == ‘7’) return true; return false; } To create a version that will detect IE 8, … Read more
WordPress Iframe IE8 Javascript problem [closed]