Created
June 9, 2018 15:57
-
-
Save jfonte/6442bd24d8725d9c88ca7170d97bc0f1 to your computer and use it in GitHub Desktop.
Fix height variation in slick and cross sells
This file contains 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
#cross-sell .cross-sell img{ | |
height: 200px; | |
width: auto;} | |
@media only screen and (max-width: 500px){ | |
#cross-sell .cross-sell img { | |
height: 100px; | |
width: auto; }} | |
@media only screen and (max-width: 979px) and (min-width: 501px){ | |
#cross-sell .cross-sell img { | |
height:150px; | |
width:auto | |
} } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment