Hi, I am using CSS to change the BG image on individual pages.
This is the code and it works:
body {
background: #fafafa url(path/filename.jpg) center center no-repeat !important;
-webkit-background-size: cover !important;
background-size: cover !important;
}
However, I want to apply an alpha to the BG image. When the image as set in X options and was the same for all pages, this CSS worked to make the BG image have an alpha:
body .backstretch {
opacity: 0.5 !important;
filter: alpha(opacity=50) !important; /* For IE8 and earlier */
}
but now that I am setting the BG image in CSS this code doesn’t work so there must be a different CSS selector I need to use … can I have it, please.
Thx