Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1708723
Penci Portfolio
Closed

Comments

  • edneal2 started the conversation

    Hi,

    I am currently using a static page as my homepage in order to utilize the penci portfolio because I love the smooth navigation of the filters. This creates a problem on mobile devices though because the project title only appears on hovering. Is there a way to change the visibility of the project title to appear below the feature image all the time instead of only on hovering? Similar to how the post grid layout looks?

    Thanks,

    Erik

  •  2,699
    PenciDesign replied

    Hi,

    Please add more this code to Customize > Custom CSS to do that:

    @media only screen and (max-width: 768px){
    .inner-item-portfolio .portfolio-desc{
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        position: static;
        margin-top: 20px;
    }
    .inner-item-portfolio .portfolio-desc h3,
    .inner-item-portfolio .portfolio-desc span{
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    }
    

    Best Regards,

    PenciDesign

  • edneal2 replied

    Thank you very much! I have an additional question that I've written below, but if I need to create a new ticket for it, please let me know and I will!

    Question: Is there a way to re-organize the portfolio categories into a custom order or even alphabetical order? Currently they are ordered by their category ID number. 

  •  2,699
    PenciDesign replied

    Hi,

    Please try use Category Order and Taxonomy Terms Order plugin to do that.


    Best Regards,

    PenciDesign

  • edneal2 replied

    Thank you, I have tried the one you suggested, as well as another which provides the same function. However, despite confirmation from the plugin that the order has been changed, the theme doesn't seem to be respecting that order. It's as if the theme is defaulting to the ID order regardless of a custom order being set. It's not a deal breaker for anything, but I will continue to mess around with it and hopefully something will work. 


    *EDIT: It did work after I removed the shortcode, saved the page, and reinserted the code again. I suppose it just needed to be reset. Thank you!