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.

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.

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 *.

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

Latest Posts

Replace Pagination Numbers with Icons in Divi Gallery Module

Transforming the pagination in the Divi Gallery module by replacing default page numbers with an icon creates a modern, visually appealing navigation experience for gallery viewers. This customization can enhance site aesthetics and improve accessibility by providing...

Change Divi Gallery Module Slider Arrow Size

Adjusting the size of slider arrows in the Divi Gallery module can help improve site navigation, enhance visual consistency, or better match your site’s design preferences. Whether you want to make navigation elements more prominent or integrate them seamlessly with...

Change Divi Gallery Module Slider Arrow Color

Customizing the appearance of your Divi Gallery module can enhance both the aesthetics and usability of your site. Changing the slider arrow color in the Gallery module slider layout allows you to ensure the navigation controls are clearly visible and match your...

Change Slider Arrow Icons in the Divi Gallery Module Slider Layout

Customizing the slider arrows in the Divi Gallery module slider layout allows you to enhance the visual appeal and user experience of your image galleries by aligning navigation icons with your website’s design style. This can help make galleries more intuitive and...

Random Posts