Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Images won't display… Reply To: Images won't display…

#241487
Atelierbram
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.

The link to your concatenated stylesheet