With the latest update for Safari (9.0) we ran into some CSS-problems for some of our WordPress themes, images did not show up. Here we present a quick fix that will help you with that.
Background-images where displayed correctly so we worked hard to find a solution for this. Thanks to Google and other creative developers out there we came over a simple solution with a small piece of CSS-code that will fix the issue.
CSS quick fix when images do not show up:
html:not(.mobile-true) #main img:not(.animate-element, .ls-s-1), html:not(.mobile-true) #header img, html:not(.mobile-true) #bottom-bar img { opacity: 1 !important; }
Notice that you have to replace some parts of the code to adapt to your specific ID´s and parts of your site (as we use #main, #header, #bottom-bar).
We hope that this quick fix will help you if or when you get in the same position as we did.
