godaddy-wordpress / block-gallery

WordPress gallery blocks built exclusively for Gutenberg
https://wpblockgallery.com
GNU General Public License v2.0
57 stars 13 forks source link

Add opacity check to images within the galleries #16

Closed richtabor closed 5 years ago

richtabor commented 5 years ago

I've received a couple notices of errors where themes have set the opacity for images to zero (for lazy-loading purposes) but then lazy-loading does not trigger within the block. A possible solution would be to force the images to display at 100% opacity.

.blockgallery--item img {
  opacity: 1 !important;
}