Skip to content

Instantly share code, notes, and snippets.

@phillcoxon
Last active January 29, 2018 07:29
Show Gist options
  • Save phillcoxon/c11dc85225ba84c389131379b0172a39 to your computer and use it in GitHub Desktop.
Save phillcoxon/c11dc85225ba84c389131379b0172a39 to your computer and use it in GitHub Desktop.
Greyscale all images in Beaver Builder and Astra theme for Prototyping
/* Greyscale all site images in Beaver Builder and Astra them */
/* 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