Okay
  Public Ticket #2583740
image gallery
Closed

Comments

  •  2
    juanjo started the conversation

    Hi, I'd like to customize the thumbnail of the image gallery, making it monochrome (black&white) on a normal state and show colors on hover event, it's that possible?
    Thanks 

  •  2,963
    Andrew replied

    Hi Juanjo.

    Thank you for contacting us.

    Please see this salient documentation on how to customize the image gallery :http://themenectar.com/docs/salient/galleries/

    Thanks.

  •  2
    juanjo replied

    Thanks Andrew, I have had a look at the documentation, but I didn't found information about how to change those settings.

  •  8,849
    Tahir replied

    Hey Again,

    This would require a bit for Custom CSS.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .portfolio-items[data-ps="7"] .col img {
        filter: grayscale(1);
    }
    .portfolio-items[data-ps="7"] .col:hover img {
        filter: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    juanjo replied

    Thank you very much