Skip to content

Instantly share code, notes, and snippets.

@raabmar
Created July 12, 2022 09:35
Show Gist options
  • Save raabmar/c9bd9dc4814fbd5664634d6ee9991620 to your computer and use it in GitHub Desktop.
Save raabmar/c9bd9dc4814fbd5664634d6ee9991620 to your computer and use it in GitHub Desktop.
Elementor CSS MEdia Queries
/* This is an Example for a gallery-item in Elementor Custom CSS with Media Queries for different Elements */
/* Small devices (mobile/tablets, 767px and below) */
@media only screen and (max-width: 766px) {
selector .gallery-item img {
object-fit: cover;
height: 18.5em
}
}
/* Medium devices (tablets/desktops, 768px and up) */
@media only screen and (min-width: 768px) {
selector .gallery-item img {
object-fit: cover;
height: 6.35em;
}
}
/* Large devices (large laptops and desktops, 1168px and up) */
@media only screen and (min-width: 1168px) {
selector .gallery-item img {
object-fit: cover;
height: 11.35em;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment