Fade a Divi Image Module Edge into the Background

Written by Dan Mossop

Want to create a stylish fade effect on your Divi image module—where one side fades smoothly into the background? With a bit of CSS, you can make any edge (or corner) of the image fade out: top, bottom, left, right, or even diagonally.

Fade a Divi Image Module Edge into the Background using CSS

Here's how to make an edge of your image module image fade into the background. 

Add the image edge fade CSS

Copy and paste the following code into "Divi > Theme Options > General Custom CSS", or your child theme stylesheet:

/* Left to right */
.et_pb_image.faded-left .et_pb_image_wrap img {
  mask-image: linear-gradient(to right, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 50%);
}

/* Right to left */
.et_pb_image.faded-right .et_pb_image_wrap img {
  mask-image: linear-gradient(to left, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to left, transparent, black 50%);
}

/* Top to bottom */
.et_pb_image.faded-top .et_pb_image_wrap img {
  mask-image: linear-gradient(to bottom, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 50%);
}

/* Bottom to top */
.et_pb_image.faded-bottom .et_pb_image_wrap img {
  mask-image: linear-gradient(to top, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to top, transparent, black 50%);
}

/* Top-left to bottom-right (diagonal) */
.et_pb_image.faded-top-left .et_pb_image_wrap img {
  mask-image: linear-gradient(to bottom right, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to bottom right, transparent, black 50%);
}

/* Top-right to bottom-left (diagonal) */
.et_pb_image.faded-top-right .et_pb_image_wrap img {
  mask-image: linear-gradient(to bottom left, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to bottom left, transparent, black 50%);
}

/* Bottom-left to top-right (diagonal) */
.et_pb_image.faded-bottom-left .et_pb_image_wrap img {
  mask-image: linear-gradient(to top right, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to top right, transparent, black 50%);
}

/* Bottom-right to top-left (diagonal) */
.et_pb_image.faded-bottom-right .et_pb_image_wrap img {
  mask-image: linear-gradient(to top left, transparent, black 50%);
  -webkit-mask-image: linear-gradient(to top left, transparent, black 50%);
}

Add the fade class to your image module

Just open the settings for your Image Module, go to the Advanced tab and expand CSS ID & Classes, and add one of the following classes to the CSS Class field:

  • faded-left

  • faded-right

  • faded-top

  • faded-bottom

  • faded-top-left

  • faded-top-right

  • faded-bottom-left

  • faded-bottom-right

Each class applies a different fade direction—choose the one that fits your design.

(Optional) Tweaking the Fade

If you'd like the fade to finish sooner or extend further into the image, you can adjust the 50% value. For example, this will complete the fade by 30% of the image width, making the visible area start sooner.

mask-image: linear-gradient(to right, transparent, black 30%);

Conclusion

That’s it! Your image will now fade smoothly in the direction you choose, blending into the background without needing extra plugins or image editing.

We may earn a commission when you visit links on our website.

Smooth Page Transitions for Divi & Extra!

Elevate your image effects with the Divi Transitions plugin! Seamlessly integrate fade, zoom, and wipe effects for an elegant user experience. Perfectly complement your CSS-customized image fades without slowing down your site.

Latest Posts

Customize Lightbox Title Styling in the Divi Gallery Module

Adjust the appearance of the lightbox title that appears when visitors open images from a Divi Gallery to align with your brand and improve readability. Refining the title’s color, size, and weight enhances visual hierarchy, accessibility, and overall polish. In this...

Center the Lightbox Image Count in the Divi Gallery Module

Centering the image count in a gallery lightbox creates a cleaner, more balanced presentation and makes it easier for visitors to see where they are in the image set. This simple visual tweak can enhance readability, especially with larger images and longer captions,...

Style the Divi Gallery Module Lightbox Image Count

Tailor the appearance of the image counter in the Divi Gallery module lightbox to match your brand and improve readability. By customizing the counter’s color and typography, you ensure it displays clearly and suits your design. In this guide we show you how to style...

Customize the Lightbox Image Background Color in the Divi Gallery

Control the color that appears behind your images when users open in the gallery lightbox, including support for semi-transparent hues. This helps improve contrast for transparent images, align the experience with your brand palette, and create a more polished viewing...

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

0 Comments

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.