Created
November 7, 2019 16:22
-
-
Save oooh-boi/fc444395f7e4abcf40ab70462f513d5d to your computer and use it in GitHub Desktop.
Breakout of images in Elementor PRO
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
/* default example (how to move the Background Overlay element to the right hand side for 15%) */ | |
selector .elementor-background-overlay { | |
width: 115%; | |
} | |
@media (max-width: 767px) { | |
selector .elementor-background-overlay { | |
top: 30%; | |
width: 100%; | |
} | |
} | |
/* switch columns example; text column on left, image on the right hand side (how to move the Background Overlay element to the left hand side for 15%) */ | |
selector .elementor-background-overlay { | |
width: 115%; | |
left: -15%; | |
} | |
@media (max-width: 767px) { | |
selector .elementor-background-overlay { | |
top: -30%; | |
left: 0; | |
width: 100%; | |
} | |
} |
Thank for the CSS Code
Thanks for the code. :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great!! Thank you so much "Oooh Boi" :)