Okay
  Public Ticket #929627
Porfolio filter
Closed

Comments

  •  2
    Amir started the conversation

    Is it possible to remove the “all” category on the portfolio filter?

  • [deleted] replied

    Hi Amir,

    Just add the code below to Custom CSS

    .product-filter ul>li:first-child {
    display: none !important;
    }
  •  2
    Amir replied

    hey... It worked but it still displays all the photos from all the catagories... The button dissapered but i still can see all the photos when i click "work" i want the catagory "cooking" will be the main

  •  2
    Amir replied

    I have cople more problems...

    i wnat to put the logo in the middle of the page... is it possible?

    in the about page the main menu buttons are black and with that grey background its not good i want them to be white.

    in the conact page the 3 bars menu icon is white and you cant see it. i want it to be black also the menu pages buttons.

  • [deleted] replied

    Hi Amir,

    I can see that you have created an other ticket with same questions here https://laborator.ticksy.com/ticket/931415

    So i will close this ticket now.

    P.S: Please don't open multiple tickets, don't worry we will reply to all clients tickets every day on working days.

  •  2
    Amir replied

    hi thank you very much, all worked out for me.

    i have one more lase quastion... is it possible to switch the clickalbe "NEXT PROJECT" and PREV PROJECT"

    to just arrows icons?

  • [deleted] replied

    Hi Amir,

    Yes that is possible, please add the code below to Custom CSS:

    .single-portfolio-holder .portfolio-big-navigation .next.mobile-only i, .single-portfolio-holder .portfolio-big-navigation .previous.mobile-only i {
        display: block !important;
    }
    
    .previous.mobile-only i {
        display: block !important;
    }
    
    .next.mobile-only i {
        display: block !important;
    }
    
    a.previous.pc-only {
        display: none !important;
    }
    
    a.next.pc-only {
        display: none !important;
    }