That would actually be a nice usability improvement. A lot of people already build search pages with Views, so having an easier way to convert the default search results into a View would make...
Have you already played with Views random seed?
I belief, what you try to achieve would work with that module. Show only one node and set the sort order to "Global: Random seed" with "...
I found a long expired sandbox module for Drupal that would do this.
https://www.drupal.org/sandbox/couloir007/2030621
I don't think I've ever used the Nodequeue module. It seems like...
To add a summary of event details to the list below the title and customize the way the time is displayed.
If this is part of the library then I guess the easiest way is to create a list...
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.