[object Object]

← back to Textilewallpaper

hero/ideas: single big full-bleed hero (remove 2x2 four-square grid + hero-4grid.js/json + inert CSS), collapse Ideas to one rail

620de3277e066a5282b7d78197769e507ac4a41f · 2026-06-01 14:16:33 -0700 · Steve Abrams

Files touched

Diff

commit 620de3277e066a5282b7d78197769e507ac4a41f
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Mon Jun 1 14:16:33 2026 -0700

    hero/ideas: single big full-bleed hero (remove 2x2 four-square grid + hero-4grid.js/json + inert CSS), collapse Ideas to one rail
---
 public/hero-4grid.js   | 112 ------------------------------------------------
 public/hero-4grid.json | 113 -------------------------------------------------
 public/index.html      |   8 +---
 3 files changed, 2 insertions(+), 231 deletions(-)

diff --git a/public/hero-4grid.js b/public/hero-4grid.js
deleted file mode 100644
index 54a9cbb..0000000
--- a/public/hero-4grid.js
+++ /dev/null
@@ -1,112 +0,0 @@
-/**
- * hero-4grid.js — universal 2×2 rotating hero for DW-family sites.
- *
- * What it does:
- *   - Fetches /data/hero-4grid.json on load
- *   - Switches the hero to 4-square mode (data-hero-mode="four-square")
- *   - Paints 4 cells with the configured images
- *   - Auto-cycles each cell every N seconds, rotating through the pool
- *   - Applies object-fit: cover; object-position: center 12% to ENFORCE
- *     the "never show image with header" rule
- *
- * Drop-in:  <script src="/hero-4grid.js" defer></script>
- *
- * Per-site override: set window.Hero4GridConfig = { url, autocycle } before load.
- */
-(function () {
-  'use strict';
-  if (window.__hero4GridLoaded) return;
-  window.__hero4GridLoaded = true;
-
-  var CFG = window.Hero4GridConfig || {};
-  var URL = CFG.url || '/hero-4grid.json';
-
-  function inject(cellEls, grid) {
-    // Switch hero mode
-    document.documentElement.dataset.heroMode = 'four-square';
-    var cinema = document.querySelector('.cinema');
-    if (!cinema) return;
-    // Build .cinema-grid if absent
-    var gridEl = cinema.querySelector('.cinema-grid');
-    if (!gridEl) {
-      gridEl = document.createElement('div');
-      gridEl.className = 'cinema-grid';
-      cinema.appendChild(gridEl);
-    }
-    gridEl.innerHTML = '';
-    for (var i = 0; i < 4; i++) {
-      var cell = document.createElement('div');
-      cell.className = 'cell hero4-cell';
-      cell.dataset.idx = i;
-      gridEl.appendChild(cell);
-    }
-    // Anti-header crop CSS — applied via inline so it ALWAYS wins
-    var style = document.createElement('style');
-    style.id = 'hero4-crop';
-    // Self-contained: inject the 2×2 LAYOUT too (not just the crop), so the grid
-    // works on any site that has the <script> tag even if its index.html never
-    // shipped .cinema-grid CSS. Hides the single .cinema-bg only once four-square
-    // mode is actually active (set in inject()), so a fetch failure keeps the
-    // static hero. Appended last → wins over any per-site .cinema-grid at equal
-    // specificity; identical values so sites that DO define it are unaffected.
-    style.textContent =
-      '.cinema-grid{position:absolute;inset:0;display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;gap:0;z-index:0;}' +
-      '.hero4-cell{width:100%;height:100%;background-size:cover !important;background-position:center 12% !important;background-repeat:no-repeat;transition:opacity 600ms ease;}' +
-      '.hero4-cell.swap-out{opacity:0;}' +
-      '[data-hero-mode="four-square"] .cinema-bg{display:none !important;}';
-    document.head.appendChild(style);
-
-    paint(grid);
-    if (grid.rotation_pool && grid.rotation_pool.length > 4) {
-      startRotation(grid);
-    }
-  }
-
-  function paint(grid) {
-    var cells = document.querySelectorAll('.hero4-cell');
-    for (var i = 0; i < cells.length; i++) {
-      var c = grid.cells[i];
-      if (c && c.image_url) {
-        cells[i].style.backgroundImage = "url('" + c.image_url + "')";
-        cells[i].title = c.title || '';
-      }
-    }
-  }
-
-  function startRotation(grid) {
-    var sec = Number(grid.autocycle_seconds) || 6;
-    var pool = grid.rotation_pool.slice();
-    // Index per cell — start with the next image after the initial 4
-    var nextIdx = [4 % pool.length, 5 % pool.length, 6 % pool.length, 7 % pool.length];
-    var cellIdx = 0;
-    setInterval(function () {
-      if (document.hidden) return; // pause when tab hidden
-      var cells = document.querySelectorAll('.hero4-cell');
-      var cell = cells[cellIdx];
-      if (!cell) return;
-      var next = pool[nextIdx[cellIdx] % pool.length];
-      if (!next || !next.image_url) { cellIdx = (cellIdx + 1) % 4; return; }
-      // Preload then swap
-      var pre = new Image();
-      pre.onload = function () {
-        cell.classList.add('swap-out');
-        setTimeout(function () {
-          cell.style.backgroundImage = "url('" + next.image_url + "')";
-          cell.title = next.title || '';
-          cell.classList.remove('swap-out');
-        }, 600);
-      };
-      pre.src = next.image_url;
-      nextIdx[cellIdx] = (nextIdx[cellIdx] + 4) % pool.length;
-      cellIdx = (cellIdx + 1) % 4;
-    }, sec * 1000);
-  }
-
-  fetch(URL, { credentials: 'same-origin' })
-    .then(function (r) { return r.ok ? r.json() : null; })
-    .then(function (grid) {
-      if (!grid || !grid.cells || !Array.isArray(grid.cells)) return;
-      inject(null, grid);
-    })
-    .catch(function (e) { console.warn('[hero-4grid] fetch failed:', e); });
-})();
diff --git a/public/hero-4grid.json b/public/hero-4grid.json
deleted file mode 100644
index 231b90c..0000000
--- a/public/hero-4grid.json
+++ /dev/null
@@ -1,113 +0,0 @@
-{
-  "cells": [
-    {
-      "kind": "room",
-      "sku": "doral-faux-silk-durable-walls-xwc-53222",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53222-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710293",
-      "title": "Doral Faux Silk Durable | Hollywood Wallcoverings"
-    },
-    {
-      "kind": "pattern",
-      "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-stone_sculpture.jpg?v=1777480693",
-      "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings"
-    },
-    {
-      "kind": "room",
-      "sku": "kent-green-faux-grasscloth-wallpaper-cca-82926",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/993e30889f13f8b295fab4953b87b302.jpg?v=1572309962",
-      "title": "Kent Green Faux Grasscloth Wallcovering"
-    },
-    {
-      "kind": "pattern",
-      "sku": "gundelson-gunny-sack-vinyl-dwx-58109",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58109-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715419",
-      "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings"
-    }
-  ],
-  "rotation_pool": [
-    {
-      "sku": "doral-faux-silk-durable-walls-xwc-53222",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53222-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710293",
-      "title": "Doral Faux Silk Durable | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52826",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-stone_sculpture.jpg?v=1777480693",
-      "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "kent-green-faux-grasscloth-wallpaper-cca-82926",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/993e30889f13f8b295fab4953b87b302.jpg?v=1572309962",
-      "title": "Kent Green Faux Grasscloth Wallcovering"
-    },
-    {
-      "sku": "gundelson-gunny-sack-vinyl-dwx-58109",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58109-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715419",
-      "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "benedict-canyon-sisal-hlw-73034",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73034-sample-clean.jpg?v=1774483132",
-      "title": "Benedict Canyon Sisal | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-lake.jpg?v=1777480706",
-      "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "hollywood-atelier-woven-xhw-2010234",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010234-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775717024",
-      "title": "Hollywood Atelier Woven | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWY-53160-sample-clean.jpg?v=1774481847",
-      "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "puna-drive-natural-grassweave-hlw-73119",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73119-sample-puna-drive-natural-grassweave-hollywood.jpg?v=1775729453",
-      "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "vanessa-mauve-henna-brocade-wallpaper-wallpaper-cca-82837",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dfbfa889e1541f82a285871a781130e4.jpg?v=1572309957",
-      "title": "Vanessa Mauve Henna Brocade Wallcovering Wallcovering"
-    },
-    {
-      "sku": "wolfgordonwallcovering_dwwg_metm-577-jpg",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-577.jpg?v=1762301131",
-      "title": "Metamorphosis - Tungsten | Wolf Gordon Wallcoverings"
-    },
-    {
-      "sku": "totori-luxury-metal-grasscloth-grs-30336",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/totori-luxury-metal-grasscloth-grs-30336-cropped.jpg?v=1774341771",
-      "title": "Totori Luxury Metal Grasscloth | Phillipe Romano"
-    },
-    {
-      "sku": "dwkk-g54fcd96c",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_155_62710527-d0d5-416b-b3b9-fa1550553877.jpg?v=1753291839",
-      "title": "Ikat Stripe Wp - Azure Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print"
-    },
-    {
-      "sku": "fringe-double-jute-contemporary-wallpaper-5",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/40323-K50C.jpg?v=1573800215",
-      "title": "Fringe Double Jute Contemporary Wallcovering"
-    },
-    {
-      "sku": "sophie-s-scrim-wallcovering-dwx-58092",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58092-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734233",
-      "title": "Sophie's Scrim | Hollywood Wallcoverings"
-    },
-    {
-      "sku": "bali-grasscloth-stripe-wallpaper-trf-56845",
-      "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/188fb516a217f62458216ed4b49f09c7.jpg?v=1750789751",
-      "title": "Bali Grasscloth Stripe | Jeffrey Stevens"
-    }
-  ],
-  "autocycle_seconds": 6,
-  "updated_at": "2026-05-14T15:38:53.268Z",
-  "generated_by": "dw-4grid-fanout.js"
-}
\ No newline at end of file
diff --git a/public/index.html b/public/index.html
index 283a9f0..ed05b0f 100644
--- a/public/index.html
+++ b/public/index.html
@@ -224,7 +224,7 @@ textarea:focus-visible,
 /* Never-show-images-with-headers rule (2026-05-14): every hero image
    is cropped to center 12% from the top to defeat vendor watermarks /
    scraped-site chrome / banner overlays. */
-.cinema-bg, .hero4-cell, .cell { background-position: center 12% !important; }
+.cinema-bg, .cell { background-position: center 12% !important; }
 .card img, .product img { object-position: center 12% !important; }
 </style>
 <!-- Meta Pixel — INERT until set-fb-pixel.sh is run (does NOT load fbevents.js or hit Meta until flipped) -->
@@ -418,10 +418,7 @@ textarea:focus-visible,
     <h2 class="rail-title">New this week</h2>
     <div class="rail" id="railNewest"></div>
   </div>
-  <div class="rail-block">
-    <h2 class="rail-title">Curated picks</h2>
-    <div class="rail" id="railCurated"></div>
-  </div>
+  
 </section>
 
 <section class="section" id="shop">
@@ -1261,7 +1258,6 @@ document.addEventListener('DOMContentLoaded', function(){ try { renderRailSectio
 
 <!-- corner-nav disabled (UL-hamburger rebuild) -->
 <script src="/sku-redact.js" defer></script>
-<!-- hero4-fix: activate 2x2 hero (self-contained; was commented placeholder) -->
 <!-- hero-4grid grid DISABLED so the single high-res hero shows full-bleed --><!-- <script src="/hero-4grid.js" defer></script> -->
 <!-- Big Red customer chat — lower-left, woman-avatar, vendor-redacted retail persona. -->
 <script data-bigred-widget src="https://chat.designerwallcoverings.com/widget.js"

← 958c399 disable hero-4grid overlay so the unique high-res room/patte  ·  back to Textilewallpaper  ·  hero: graphic-designer-vetted clean replacement (no baked te d443919 →