Home › Forums › CSS › Images won't display… › Reply To: Images won't display…
May 11, 2016 at 1:36 am
#241487
Participant
When searching for .av-masonry-entry
in your (layerslider.css
?) stylesheet on Isotope Masonry, there is this declaration block:
.av-masonry-entry {
position: relative;
display: block;
width: 24.90%;
float: left;
clear: none;
text-decoration: none;
visibility: hidden;
opacity: 0;
}
Now those last two property/value pairs are preventing the images to be visible. So removing visibility: hidden
and opacity: 0
will make them reappear.
However this might not be the cause of your problem, maybe the cause is this javaScript error preventing the Masonry javascript to override those styles, but that’s not more then a wild guess.