Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /* For displaying 3 columns on tablet */
  2. @media only screen and (max-width: 800px) {
  3. .gallery-columns-5 .gallery-item {
  4. width: 33%;
  5. }
  6. }
  7.  
  8. /* For displaying single column on mobile */
  9. @media only screen and (max-width: 480px) {
  10. .gallery-columns-5 .gallery-item {
  11. width: 100%;
  12. }
  13. }
  14.  
  15. .gallery-columns-5 .gallery-item:nth-child(5n+1) {
  16. clear: none;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement