Façade Refresh

td hero

TD Bank Branch

Bank Exterior Signage Wrap

Project Overview:
TD Alucabond panelling at the TD branch had to be replaced. Rather than replace the Alucobond panels, INPS suggested another environmentally friendly option.

Challenge:
In order to apply the INPS solution using 3M TD Green micro-comply material, the entire surface had to be cleaned, patched and repaired.

Solution:

To prepare the surface for the wrap, our installation team power-washed the surface and sanded the leading edges to provide a clean surface for the material to adhere to. Some of the other sections required the caulking to be removed and replaced. These repairs were essential to offer the extended exterior warranty.

Once the surface was prepared for the vinyl application, our installation team applied the 3M TD Green micro-comply base layer with the 3660 Matte anti-graffiti laminate. This 3M Material offers a ten-year exterior warranty.

Project Details: Location: TD Queensway, Toronto, Ontario

Scope of Project:

  • Repair of sign face
  • Size the material
  • Facia Sign
  • Sign face refresh
  • 3M™ DI-NOC™ Architectural Finishes
  • Anti-Graffiti Film
  • Installation
  • Sustainability
td 1
td 2
td 3
td 4
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) }); }); });