Advertisement
parkeast

Divi Image Heights

Aug 4th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. /* IMAGE ROW HEIGHTS */
  2.  
  3. .rowofimages .et_pb_column_1_4 .et_pb_image {
  4.     max-height: 210px !important;
  5.     min-height: 210px !important;
  6.     height: 210px !important;
  7.     overflow: hidden !important;
  8. }
  9.  
  10. .rowofimages .et_pb_column_1_4 .et_pb_image  img {
  11.     min-height: 210px !important;
  12.     height: 210px !important;
  13.     min-width: 100% !important;
  14.     width: auto !important;
  15.     object-fit: cover !important;
  16. }
  17.  
  18.  
  19. .rowofimages .et_pb_column_1_3 .et_pb_image {
  20.     max-height: 300px !important;
  21.     height: 300px !important;
  22.     overflow: hidden !important;
  23. }
  24.  
  25. .rowofimages .et_pb_column_1_3 .et_pb_image img {
  26.     min-height: 300px !important;
  27.     height: 300px !important;
  28.     min-width: 100% !important;
  29.     width: auto !important;
  30.     object-fit: cover !important;
  31. }
  32.  
  33. .rowofimages .et_pb_column_1_2 .et_pb_image {
  34.     max-height: 440px !important;
  35.     min-height: 440px !important;
  36.     height: 440px !important;
  37.     overflow: hidden !important;
  38. }
  39.  
  40. .rowofimages .et_pb_column_1_2 .et_pb_image  img {
  41.     min-height: 440px !important;
  42.     height: 440px !important;
  43.     min-width: 100% !important;
  44.     width: auto !important;
  45.     object-fit: cover !important;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement