Here's a quick tip for using the Divi Theme's image module to do a diagonal overlay of two different images.
Create an image module and set one of your images (the one you wish to appear at the top right) as the main image for the module. Then set the other image as the background image for the module. NB: I'm assuming they are the same size for this.
Now give the module a CSS class of "diagonal-overlay" (without the quotes), in "Image Settings > Advanced > CSS ID & Classes > CSS Class".
Finally, add the following CSS to your page / site:
.et_pb_image.diagonal-overlay img {
-webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
clip-path: polygon(0 0, 0% 100%, 100% 0);
}
Related Post: Adding CSS to the Divi Theme
0 Comments