Hide type and date on portfolio page


hi, is there a way to keep the title but hide the type (image) and date on the main portfolio page please.

Also, can I change the + so it says ‘filter’ instead?

Hello Lisa,

Please add this code in the Global CSS:

.x-portfolio .entry-cover-content span:first-child {
    display: none;
}

.x-portfolio-filters i:before {
    content: 'Filter';
    font-family: "ABeeZee",sans-serif;
    letter-spacing: 0.4px;
}

.x-portfolio-filters {
    width: auto;
    height: auto;
    display: block;
    padding: 2px 8px;
}

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

you are a genius and that is perfect! thank you so much

You are most welcome. :slight_smile:

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