Problem/Motivation
The current background (black background) of the featured speakers is attached to
.block-views-blockfeatured-speakers-block-1

That is problematic, as that is the machine name of a specific block and hardcodes it there.
Steps to reproduce
Add a new block to the Drupal view called featured speakers.

Proposed resolution
Instead of hardcoding to a machine name, maybe we should add it to a generic class here.

.views-element-container:has(.featured-speakers-view-block) {
--color-background: var(--neutral-dark);
--color-text: var(--color-white);
grid-column: 2 / -2;
background-color: var(--color-background);
border-image-source: linear-gradient(var(--color-background), var(--color-background));
border-image-outset: 0 50vw;
border-image-slice: fill 0;
}

Remaining tasks
Create the PR.
Wait for the event platform issue to be merged.
| Comment | File | Size | Author |
|---|---|---|---|
| #9 | Screenshot 2026-02-08 at 5.14.08 PM.png | 467.02 KB | bernardm28 |
| Screenshot 2025-10-08 at 11.48.14 AM.png | 259.7 KB | bernardm28 | |
| Screenshot 2025-10-08 at 11.51.18 AM.png | 446.87 KB | bernardm28 | |
| Screenshot 2025-10-07 at 2.27.13 PM.png | 242.67 KB | bernardm28 | |
| Screenshot 2025-10-08 at 11.48.14 AM.png | 259.7 KB | bernardm28 |
Issue fork event_horizon-3551038
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
bernardm28 commentedComment #9
bernardm28 commentedSo switching the block to be on content vs content above makes a difference, a new PR with it on the new region is coming up.
Comment #13
bernardm28 commented