Hi,
I want to add a filter like http://html5-demos.appspot.com/static/css/filters/index.html for all my pictures of a fullscreen-slider. Could you please support me with the css-code? Thanks!
Manu
Ok I solved it on my own, but for those who like to do the same:
1. Add add_theme_support(‘avia_template_builder_custom_css’); in the functions.php at the very end of the file.
2. With this I could define a different css-class to the fullscreen-slider. I gave it the name “immoslider”.
3. Added this css:
.immoslider {
filter: grayscale(70%);
-webkit-filter: grayscale(70%);
-moz-filter: grayscale(70%);
-o-filter: grayscale(70%);
filter: grayscale(70%);
}
Manu