Created
January 18, 2020 12:21
-
-
Save oooh-boi/a2e47433443125887d20aafd5cec7388 to your computer and use it in GitHub Desktop.
OoohBoi Video Tutorial : Full-height Image Widget in Elementor PRO
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
/* be sure to copy-paste to the Image Widget Custom CSS panel */ | |
selector, | |
selector .elementor-widget-container, | |
selector .elementor-image, | |
selector .elementor-image > a { | |
height: 100%; | |
} | |
selector .elementor-image img { | |
object-fit: cover; | |
object-position: 50% 50%; | |
height: 100%; | |
} |
elementor returns two warnings: unknown property: "object-fit" and unknown property: "object-position" but it works anyways
It still doesn't work in my case
elementor returns two warnings: unknown property: "object-fit" and unknown property: "object-position" but it works anyways
It still doesn't work in my case
Did you solve it ? I have the same issue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!