1. PROMO Subscribe our All Access Pass @ 75% OFF & access all our 16+ premium Divi extensions: Divi Block Pro, Carousel Toolkit, etc.LEARN MORE
Dismiss Notice
NEW Divi.Help Pro Carousel AI Toolkit - Magically turn your Divi design into carousel, simply by using our online toolkit. No plugins needed. Now it works with Divi 5 as well!Try our carousel AI toolkit
BEST Divi Block - A revolutionary drag & drop tool to easily mix & match 960+ premade blocks (Light & Dark) to kick start your Divi site design. Special module designs are included as well. Also newly added AI generator & color. Now it works with Divi 5 as well!
Learn More About Divi BlockFree Version ~ 340+ Free Blocks

Divi 5 Filterable Portfolio - hide link, hover effects help needed

Discussion in 'Free Divi Community Forum' started by stoogesfan72, May 13, 2026 at 1:48 PM.

  1. stoogesfan72

    stoogesfan72 New Member

    Hi,

    I have set up a Filterable Portfolio with 4 "projects" (using only the Project Title and Featured Image for each) on this page under the "some of our recent work" headline:

    https://kme.c8d.myftpupload.com/

    My goal is to hover over each album and reveal the Project (i.e., Album) title and the Project "excerpt" text. However, when I hover over each album, now a semi-opaque grey box appears (I think due to the <a> link property), and the title text does appear, after adding this CSS code to the module itself that I found online:

    /* HOVER OVER SHOW TITLE */
    .et_pb_portfolio_item .et_pb_module_header {
    position: absolute!important;
    top: 50%!important;
    transform: translateY(-50%)!important;
    text-align: center;
    left: 20px;
    right: 20px;
    opacity: 0;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
    }
    .et_pb_portfolio_item:hover .et_pb_module_header {
    opacity: 1!important;
    }
    .et_pb_portfolio_item .et_overlay:before {
    display: none!important;
    }

    .full-width-btn {
    width: 100%;
    text-align: left;
    }


    Is there a way to add or change the CSS to remove the grey hover, only show each Project's Title and Excerpt, and possibly launch a lightbox effect for each (although that isn't as important)?

    Many thanks!

    Paul
     
    1. PRO MEMBER PERKS Divi Mini Cart Pro Plugin - Instantly add 3 different types of mini cart to your Divi site:Learn More
  2. Divi.Help

    Divi.Help Administrator
    Staff Member

    I see that you added pointer-events none to the portfolio items, so that they couldn't be hover on. If you're still looking to fix the grey box, let me know. Kindly note that I'll need to view the issue live to troubleshoot it.
     
  3. stoogesfan72

    stoogesfan72 New Member

    Hi, using the Divi 5 ai chatbot, I was able to change some hover behavior using this CSS... I have turned the hover pointer-events back on:

    /* REMOVE HOVER EFFECTS (INCLUDING LINK TO PROJECT ITSELF) ENTIRELY

    selector .et_pb_portfolio_item {
    pointer-events: none;
    } */

    /* TO SHOW TITLE ON HOVER, COMMENT OUT LINES 1-5 ABOVE AND UNCOMMENT OUT THE CODE BELOW */

    /* Remove grey overlay */
    selector .et_overlay {
    background: transparent !important;
    }

    /* Title + excerpt container */

    selector .et_pb_portfolio_item .et_pb_module_header,
    selector .et_pb_portfolio_item .post-excerpt {
    position: absolute;
    left: 20px;
    right: 20px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    }

    /* Center vertically */
    selector .et_pb_portfolio_item .et_pb_module_header {
    top: 45%;
    transform: translateY(-50%);
    }

    selector .et_pb_portfolio_item .post-excerpt {
    top: 60%;
    transform: translateY(-50%);
    font-size: 14px;
    }

    /* Show on hover */
    selector .et_pb_portfolio_item:hover .et_pb_module_header,
    selector .et_pb_portfolio_item:hover .post-excerpt {
    opacity: 1;
    }


    HOWEVER, now I still see the "mouse hand" icon when I hover over, and there is a thin white border around the hovered item that I can't seem to target properly with CSS to remove. I would ideally like to hover over each item (which is a Divi "Project".. not a post or page) and show the Featured Image, the Project Title, and the Project Excerpt... can you provide the correct CSS for me? would be MOST appreciated.

    Thanks!

    Paul
     
    1. PRO MEMBER PERKS Beautifully crafted custom colored 'Digital Marketing' Divi layout for all Pro members:View Demo
  4. Divi.Help

    Divi.Help Administrator
    Staff Member

    To remove the thin border, add this Free-Form CSS ass well:
    Code:
    Log In or Sign Up to view this code.
    As for the "mouse hand", you may turn it back to the original cursor using the below CSS:
    Code:
    Log In or Sign Up to view this code.