Renew stack question

Hello

Im using a renew stack. Currently there’s a plus sign in the upper right corner to reveal the portfolio categories. Is there a way that the categories could be listed on this bar instead of the plus sign that one needs to click on?

thanks

Hi @chrisware24,

Thank you for reaching out to us. This can be done with custom CSS. Please add the following code in the Theme Options > CSS:

@media screen and (min-width: 768px) {
    .page-template-template-layout-portfolio .x-landmark {
        width: 5%;
        padding-right: 0;
    }

    .x-portfolio-filters-menu {
        width: 100%;
        display: block !important;
    }

    ul.option-set[data-option-key="filter"] {
        position: relative;
    }

    ul.option-set[data-option-key="filter"] > li {
        position: absolute;
        left: 0;
        right: 0;
        top: -30px;
    }
    .x-portfolio-filters-menu li {
        display: inline-block;
    }
    .x-portfolio-filters {
        display: none;
    }
}

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Don’t forget to clear all caches including your browser’s cache after adding the code. Hope this helps!

Awesome! Thanks!!!

You are most welcome!

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