Portfolio Categories Display

Hi there! One of the problems my clients have is the “+” for displaying categories to filter a portfolio. The problem is that the plus-sign is not intuitive - it’s constantly overlooked as a way to filter the portfolio. Is there an alternative for how to display the categories? I see a lot of other portfolio plugins that list the categories in little button-like boxes that are plainly visible.

Is there another way for displaying portfolio categories on a portfolio page other than the plus sign? Can it be done with a custom header for the portfolio parent page(s)? Is there any easier option?

Thank you! :slight_smile:

Hi There,

Each stack has a different style for the portfolio page. You can see on the demo:

On the Icon and Renew stack, we have to click on the plus icon to show the portfolio categories. To always display the portfolio categories, please add this custom CSS under Theme Options > CSS:

.x-landmark, .x-breadcrumbs-wrap {
    display: block;
    width: 100%;
    margin-bottom: 25px;
}

.x-breadcrumbs-wrap {
    text-align: center;
}

.x-portfolio-filters {
    display: none;
}

ul.x-portfolio-filters-menu {
    display: block;
    width: 100%;
    position: relative;
}

ul.x-portfolio-filters-menu li {
    display: inline-block
}

.x-portfolio-filters-menu li a {
    padding: 0 15px;
    display: block;
}

Hope that helps and thank you for understanding.

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