Created
December 20, 2017 14:31
-
-
Save diggeddy/6ffe89427c72c39df7f380edd6068802 to your computer and use it in GitHub Desktop.
Add Masonry to Elementor Gallery Widget
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Elementor - add Masonry to Gallery Widget */ | |
.gallery-icon img{ | |
width: 100%; | |
} | |
@media (min-width: 1024px) { | |
#gallery-1 { | |
column-count: 4; | |
column-gap: 0px; | |
} | |
} | |
@media (min-width:361px) and (max-width:1024px) { | |
#gallery-1 { | |
column-count: 2; | |
column-gap: 0px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment