Custom Donor Recognition Walls

parkwood hero

Parkwood Hospital Donor Wall

Recognizing Dedication and Building a Legacy

Project Overview:
To revitalize and expand an installation honouring war veterans and recognizing donors that would more comprehensively pay tribute to the dedication, sacrifice and service of the honourees. 

Challenge:
To create a new mural that would incorporate the existing donor wall and allow for future additions and annual updates that would seamlessly fit into the overall design.

Solution:
A new design was created to harmoniously connect the established Parkwood Heroes wall mural to the adjoining chapel. A glass block cross was installed, and accentuated laser-cut graphics and vinyl letters featuring poppies and quotations and an easily-expanded donor recognition solution with printed donor plates were installed.

Project Details:
Location: Parkwood Hospital London, Ontario Scope of Project:

  • Design
  • Engineering
  • Fabrication
  • Installation
  • Donor Walls
  • Donor Recognition
  • Acrylic Letters
  • Engraved Name Plates
  • Digitally printed donor plates
  • Digitally printed wall plaques
  • Decorative hardware
parkwood 1
parkwood 2
document.addEventListener("DOMContentLoaded", () => { // Only run on touch-style devices (phones/tablets) const isTouch = window.matchMedia("(hover: none), (pointer: coarse)").matches; if (!isTouch) return; // Optional: narrow scope to your header if you want. // Example: const scope = document.querySelector("header"); const scope = document; // Common WordPress/Elementor submenu patterns const parentSelector = "li.menu-item-has-children > a, li.menu-item-has-children > .elementor-item"; // Close all open submenus inside scope const closeAll = () => { scope.querySelectorAll("li.menu-item-has-children.is-open").forEach((li) => { li.classList.remove("is-open"); const a = li.querySelector(":scope > a, :scope > .elementor-item"); if (a) a.setAttribute("aria-expanded", "false"); }); }; // Click/tap outside closes document.addEventListener("click", (e) => { // If the click is outside the menu area, close if (!e.target.closest(".elementor-nav-menu, .elementor-location-header, header")) { closeAll(); } }); // Make parent items toggle on first tap scope.querySelectorAll(parentSelector).forEach((link) => { link.addEventListener("click", (e) => { const li = e.currentTarget.closest("li.menu-item-has-children"); if (!li) return; const alreadyOpen = li.classList.contains("is-open"); // If submenu isn't open yet: open it and prevent navigation if (!alreadyOpen) { e.preventDefault(); e.stopPropagation(); // Close siblings/other open menus first (keeps things tidy) closeAll(); li.classList.add("is-open"); link.setAttribute("aria-expanded", "true"); return; } // If it's already open, allow the click to navigate normally (2nd tap) // (No preventDefault here) }); }); });