Home Forums Theme support Logo Prestige Theme

This topic contains 2 replies, has 2 voices, and was last updated by  Marvin James 9 years, 4 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • In the prestige theme how can I make the logo image stay in color and have the other images in gray scale?

    Hi,

    you can add this CSS code in WordPress admin -> Appearance -> Theme Options -> General -> Extra CSS Content:

    #brand img {
        filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
        -webkit-filter: grayscale(0%);
    }

    Thank you that worked

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.