Okay
  Public Ticket #1942588
Portfolio items with b&w-color transition
Closed

Comments

  •  1
    davideroppo started the conversation

    I'm setting a portfolio page with "portfolio items" from page buider. Now, the only thing I can choose in Portfolio type is "inside titles" or "visible titles" with white effect on mouse over. I would like to have all portfolio's image in black&white and get colored version when mouse is over them: is that possible ?

  •  1,559
    Laborator replied

    Hi davideroppo,

    I will need to see your site live but you can also try adding this CSS to Custom CSS to achieve that:

    .portfolio-item img {
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);   
      transition:  all 0.2s;
    }
    .portfolio-item:hover img {
      -webkit-filter: grayscale(0%);
      filter: grayscale(0%);      
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group