Designer Labels We Do Not Carry

The following is an uncomprehensive list of the designer labels that we do not, or no longer carry, at Garb.

This list is not a reflection of personal taste or style, simply that our customers are looking for apparel and accessories that are unique and less accessible.

Clothing Labels We Do Not Accept

A

  • Abercrombie & Fitch
  • Addition Elle
  • Adidas
  • Aeropostale
  • Alo
  • American Eagle Outfitters
  • Andrew Marc
  • Ann Taylor
  • Anne Klein
  • Anthropologie
  • Aritzia
  • Armani Exchange
  • Armani Jeans
  • Attitude – Jay Manuel

B

  • Babaton
  • Banana Republic
  • Basler
  • BCBG Maxazria
  • BCBGeneration
  • BCBGirls
  • Bebe
  • Benaton
  • Bench
  • Bianca Nygard
  • Bluenotes
  • Brax
  • Brooks Brothers
  • Buffalo

C

  • Calvin Klein
  • Champion
  • Chaps
  • Cleo
  • Club Monaco
  • Coach
  • Columbia
  • Copley
  • Cos

D

  • Danier
  • Debbie Shuchat
  • Denim & Supply - Lauren
  • Denver Hayes
  • Dex
  • Diesel
  • DKNY
  • Dynamite

E

  • Eddie Bauer
  • Edit – Jeanne Beker
  • Ellen Tracey
  • Esprit

F

  • Fairweather
  • Forever 21
  • Frank & Oak
  • Fred Perry
  • Free People
  • French Connection

G

  • The Gap
  • Garage Clothing
  • George
  • Guess

H

  • H&M
  • Haggar
  • Hilary Radley
  • Hollister
  • Hugo Boss

I

  • INC – International Concepts
  • Izod

J

  • J. Crew
  • Jack & Jones
  • Joe Fresh
  • Joeffer Caoc
  • John Varvatos Star USA
  • Jones & Co.
  • Jones New York
  • Jones Studio
  • Joseph Ribkoff

K

  • Kendall + Kylie
  • Kensie
  • Kit & Ace
  • Kotn

L

  • Lacoste
  • La Senza
  • La Vie En Rose
  • Lady Dutch
  • Laura
  • Lauren – Ralph Lauren
  • Le Chateau
  • Levi's
  • Liz Claiborne
  • Loft – Ann Taylor
  • Louben
  • LRL – Lauren Jeans Co.
  • Lululemon

M

  • Mango
  • Marc Aurel
  • Marc by Marc Jacobs
  • Marc New York
  • Marciano
  • Massimo Dutti
  • Max & Cleo
  • Melanie Lynn
  • Michael - Michael Kors
  • Moores
  • Mondi

N

  • Nicole Miller
  • Nike
  • Nine West
  • New Balance
  • North Face
  • Nygard

O

  • Oak + Fort
  • Old Navy
  • Olsen Europe
  • OVO

P

  • Patrick Assaraf
  • Peter Nygard
  • Pink Tartan
  • Polo Ralph Lauren

R

  • Reebok
  • Reformation
  • Reiss
  • Reitmans
  • Ricki's
  • Robert Graham
  • Roots
  • Rudsak
  • RW & Co.

S

  • Sandra Angelozzi
  • Scotch & Soda
  • Shein
  • Simons
  • Spanner
  • Splendid
  • Strellson
  • Style & Co.
  • Suit Supply
  • Suzy Shier

T

  • Talbots
  • Ted Baker
  • Tommy Bahama
  • Tommy Hilfiger
  • TNA

U

  • Uniqlo
  • Urban Behaviour
  • Urban Outfitters

V

  • Vero Moda
  • Von Dutch

W

  • Wilfred
  • Wind River

Z

  • Zara
  • Zegna Sport

Shoe Labels We Do Not Accept

(In general shoes must retail for more than $750 for us to accept them at Garb)

  • Adidas
  • Adrianna Papell
  • Aldo
  • Allen Edmonds
  • Arche
  • Bagdley Mischka
  • Bandolino
  • BCBG Maxazria
  • BCBG Paris
  • BCBGeneration
  • BCBGirls
  • Ben Sherman
  • Calvin Klein
  • Charles Jourdan
  • Clarks
  • Coach
  • Cole Haan
  • Diesel
  • Ecco
  • Enzo Angiolini
  • Franco Sarto
  • Guess
  • Jessica Simpson
  • Kate Spade
  • Le Chateau
  • Marc by Marc Jacobs
  • Michael - Michael Kors
  • Naturalizer
  • Nevada
  • New Balance
  • Nike
  • Nine West
  • Pajar
  • Puma
  • Reebok
  • Robert Clergerie
  • Rockport
  • Sam Edelman
  • Skechers
  • Soft Moc
  • Steve Madden
  • Stuart Weitzman
  • Taryn Rose
  • Timberland
  • Tory Burch
  • Ugg
  • Vans
  • Via Spiga

Denim Labels We Do Not Accept

  • Bandolino
  • Billabong
  • Bluenotes
  • Buffalo
  • DKNY Jeans
  • Guess
  • J. Crew
  • Lee Jeans
  • Levi's
  • Lucky Brand
  • Mavi
  • Quiksilver
  • Se7en
  • Silver
Follow Garb on Instagram Follow Garb on Twitter
if (window.history.pushState) { const SCROLL_RESTORATION_TIMEOUT_MS = 3000; const TRY_TO_SCROLL_INTERVAL_MS = 50; const originalPushState = window.history.pushState; const originalReplaceState = window.history.replaceState; // Store current scroll position in current state when navigating away. window.history.pushState = function() { const newStateOfCurrentPage = Object.assign({}, window.history.state, { __scrollX: window.scrollX, __scrollY: window.scrollY, }); originalReplaceState.call(window.history, newStateOfCurrentPage, ''); originalPushState.apply(window.history, arguments); }; // Make sure we don't throw away scroll position when calling "replaceState". window.history.replaceState = function(state, ...otherArgs) { const newState = Object.assign({}, { __scrollX: window.history.state && window.history.state.__scrollX, __scrollY: window.history.state && window.history.state.__scrollY, }, state); originalReplaceState.apply(window.history, [newState].concat(otherArgs)); }; let timeoutHandle = null; let scrollBarWidth = null; // Try to scroll to the scrollTarget, but only if we can actually scroll // there. Otherwise keep trying until we time out, then scroll as far as // we can. const tryToScrollTo = (scrollTarget) => { // Stop any previous calls to "tryToScrollTo". clearTimeout(timeoutHandle); const body = document.body; const html = document.documentElement; if (!scrollBarWidth) { scrollBarWidth = getScrollbarWidth(); } // From http://stackoverflow.com/a/1147768 const documentWidth = Math.max(body.scrollWidth, body.offsetWidth, html.clientWidth, html.scrollWidth, html.offsetWidth); const documentHeight = Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight); if (documentWidth + scrollBarWidth - window.innerWidth >= scrollTarget.x && documentHeight + scrollBarWidth - window.innerHeight >= scrollTarget.y || Date.now() > scrollTarget.latestTimeToTry) { window.scrollTo(scrollTarget.x, scrollTarget.y); } else { timeoutHandle = setTimeout(() => tryToScrollTo(scrollTarget), TRY_TO_SCROLL_INTERVAL_MS); } }; // Try scrolling to the previous scroll position on popstate const onPopState = () => { const state = window.history.state; if (state && Number.isFinite(state.__scrollX) && Number.isFinite(state.__scrollY)) { setTimeout(() => tryToScrollTo({ x: state.__scrollX, y: state.__scrollY, latestTimeToTry: Date.now() + SCROLL_RESTORATION_TIMEOUT_MS, })); } }; // Calculating width of browser's scrollbar function getScrollbarWidth() { let outer = document.createElement("div"); outer.style.visibility = "hidden"; outer.style.width = "100px"; outer.style.msOverflowStyle = "scrollbar"; document.body.appendChild(outer); let widthNoScroll = outer.offsetWidth; // force scrollbars outer.style.overflow = "scroll"; // add innerdiv let inner = document.createElement("div"); inner.style.width = "100%"; outer.appendChild(inner); let widthWithScroll = inner.offsetWidth; // remove divs outer.parentNode.removeChild(outer); return widthNoScroll - widthWithScroll; } window.addEventListener('popstate', onPopState, true); }