Skip to content

Instantly share code, notes, and snippets.

@m1ndspark
Created July 23, 2018 17:17
Show Gist options
  • Select an option

  • Save m1ndspark/2ea4dc948d2d6621674a4cd4545c2a35 to your computer and use it in GitHub Desktop.

Select an option

Save m1ndspark/2ea4dc948d2d6621674a4cd4545c2a35 to your computer and use it in GitHub Desktop.
Beaver Builder + Astra Theme - Make All Images Grayscale
/* Greyscale all site images in Beaver Builder and Astra theme */
/* Add to Beaver Builder Global CSS */
img, body
{
filter: grayscale(100%) !important;
-moz-filter: grayscale(100%) !important;
-webkit-filter:grayscale(100%) !important;
-webkit-filter: grayscale(1) !important;
-o-filter:grayscale(100%) !important;
-ms-filter:grayscale(100%) !important;
filter: gray !important;
}
div.ast-title-bar-wrap
{
filter: grayscale(100%) !important;
-moz-filter: grayscale(100%) !important;
-webkit-filter:grayscale(100%) !important;
-webkit-filter: grayscale(1) !important;
-o-filter:grayscale(100%) !important;
-ms-filter:grayscale(100%) !important;
filter: gray !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment