Okay
  Public Ticket #2068439
Title + excerpt on portfolio item
Closed

Comments

  •  1
    Haggbom started the conversation

    Hi, 

     I want to show both Title + small excerpt on portfolio item all the time. Not just when I hover the portfolio/post item. 

    Can this be fixed?

    Thanks!

  • [deleted] replied

    Hi,

    I have added portfolio excerpt with this custom code:

    // Show excerpt below portfolio items
    add_action( 'kalium_portfolio_loop_item_categories_before', function() {
        the_excerpt();
    } );
    
    And the result is:

    medium
    (view large image)

    Does this work for you?

  •  1
    Haggbom replied

    Hi, thanks.

    Yes, that works. But how do you do so the title + excerpt is showing all the time. Even before I hover the post image?

    Thanks!

  • [deleted] replied

    Hi,

    Yes you can add this custom CSS to show the hover layer always:

    .portfolio-item .thumb .hover-state,
    .portfolio-item .portfolio-holder .thumb .hover-state {
        visibility: visible;
        opacity: 0.9;
    }
    .portfolio-holder .thumb .hover-state .info > h3,
    .portfolio-holder .thumb .hover-state .info > p {
        visibility: visible;
        opacity: 1;
        transform: none;
    }
    
    So the hover layer is shown by default:

    medium
    (view large image)

  •  1
    Haggbom replied

    Great! Thank you for the help! 

  • [deleted] replied

    I'm happy to hear thatsmile.png

    Will set this ticket as solved from here.

    P.S: If you like the theme, it would help us a lot if you could give us a five-star rating on Themeforest from your Downloads tab.

    A huge thank you from me and Laborator in advance.