I'm editing a Drupal website, but I don't have access to html files, I only can modify CSS.
I need to put some kind of filter on an image background, because without the filter the text on it can't be read.
I tried the following css lines:
.class{background: url(image.jpg) rgba(242, 244, 255, 0.73);}
.class{background: rgba(242, 244, 255, 0.73) url(image.jpg);}
.class{background-image: url(image.jpg); background-color: rgba(242, 244, 255, 0.73)}
But none of these worked. How should I do it?