Home › Forums › Design › Creating a global black and white (grey scaled) theme › Reply To: Creating a global black and white (grey scaled) theme
July 1, 2015 at 1:55 am
#204434
Member
Shouldn’t that be
body :not(img) { /* you want the children not the body itself*/
filter: grayscale(100%);
}
or
body *:not(img) {
filter: grayscale(100%);
}