Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Creating a global black and white (grey scaled) theme Reply To: Creating a global black and white (grey scaled) theme

#204434
Paulie_D
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%);
}