Question

So, this is based on WordPress. Here is the blog on safari and on firefox, what is wrong, likely with the css, since firefox it is not displaying the page correctly?

on safari (, mouse hover on first post) enter image description here

on firefox enter image description here

html (with php) - pastebin link

html (generated) - pastebin link

css - pastebin link

the first grayed element on firefox is this http://cl.ly/image/321l1c1u2z2C


Added a jsfiddle: DEMO

Was it helpful?

Solution

The "display:moz-box;" applied to .post-holder is preventing the images from showing up. Looking into WHY now.

I haven't messed with flex-box layouts much at all, so this is largely assumptions. You have a "display:mox-box;" set on .post-holder, but .post-image neglects to set any flexbox properties. Adding "-moz-box-flex: 1;" to .post-image causes the images to display, but likely are not the size you're shooting for.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top