Works now after clearing the browser cache.
The design has also solidified.
It was at an image field's page. (Clearing the site cache had no effect).
Hereby fixed, thank you...
Posted1 hour 50 min ago by RS Snyder (theflightrs) on:
I'm not seeing that issue (I just spinned out a fresh installation with 1.30.2). What's really weird is that you still have the "less / more" which shouldn't be there. Clear caches?
Also...
Posted1 hour 59 min ago by Alejandro Cremaschi (argiepiano) on:
If I recall correctly, Backdrop will not gzip if the page content is already gzipped. And it only happens if you've enabled page compression setting.
But maybe that doesn't help here...
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.