Correct, if you add multiple condition statements they are treated as AND so it would appear to the system as:
node/103 AND node/91 which will never happen.
Glad you found the way to...
Posted4 hours 56 min ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
YES! That works.
This whole thing is extremely bizarre, though. On the site I'm building (not the sandbox demo), I had a view that was displaying multiple images correctly (i.e. once, not...
Maybe "Query settings" : "Distinct".
If there are multiple identical items, each will be displayed only once. You can use this to try and remove duplicates from a view, though it...
Excellent! Yes, that's one of those "too simple and obvious" solutions. I hadn't thought of it either.
However, this solves only one part of the problem (empty blocks). It doesn't solve my...
Comments
I guess because the CSS code that manages this element is:
.block-hero-no-image {
background-blend-mode: luminosity;
background-color: #0074bd;
background-image: url("/core/themes/basis/images/texture.png");
background-position: center center;
background-repeat: repeat;
}
The background-blend-mode CSS3 property is not supported by Microsoft browsers:
https://www.w3schools.com/cssref/pr_background-blend-mode.asp
https://developer.mozilla.org/en-US/docs/Web/CSS/background-blend-mode
I would recommend to use another CSS technique for this block - for example CSS opacity or RGBA color.
Or may be simply color texture.png file.