Portfolio items (small changes)

Hello. Is it possible to do the following with portfolio items:

• remove the date on the hover
• make the whole image clickable (not just the name of the portfolio item)

I attach a screenshot of what item I mean. Thanks for any help

Martin

Hi @catcolon,

Thanks for reaching out.

I assume you mean hide the date hover or not, because it only appears upon hover. If yes, please add this CSS to your global custom CSS.

    .page-template-template-layout-portfolio .x-portfolio .entry-cover-content span:last-child {
     display: none;   
    }

Or perhaps you mean when you hover just the date it should hide?

As for linking, please add this CSS as well

.page-template-template-layout-portfolio .x-portfolio .entry-cover {
pointer-events:none;
}

Cheers!

works great. can’t thank you enough!

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.