20% off the store --- free/reduced shipping on most orders

Sizing

Don't forget Llum's "no regrets" return policy if you have a sizing issue.

LLUM SIZING CHART
Infant-Toddler Weight (lb) Height (in) Waist (in) Hip (in)
6-12M 17-22 27-29 19 19
12-18M 22-25 29-31 19.5 20
18-24M 25-28 31-33 20 20.5
2T 28-29 33-35 20 22
3T 29-32 36-38 20.5 23
         
Girls Weight (lb) Height (in) Waist (in) Hip (in)
4 33-38 39-42 21 24
5 39-44 42-45 22 25.5
6 44-55 45-49 22.5 26.5
7 56-64 49-52 23 27.5
8 65-72 52-54 23.5 28.5
10 73-81 54-57 24 30
12 82-93 57-60 25 31.5

 

In general, our products run true to size. We make every effort to ensure that our sizing is comparable to other top brands.

document.addEventListener('DOMContentLoaded', () => { const productJson = [...document.querySelectorAll('[id^=ProductJson-')]; if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const productVariants = JSON.parse(product.innerHTML); const unavailableVariants = []; productVariants.variants.forEach((variant) => { if (variant.available === false) { unavailableVariants.push(variant); } }); const variantOptions = [...document.querySelectorAll('#' + sectionId + ' .single-option-selector option')] const observer = new MutationObserver((mutation) => { unavailableVariants.forEach((item) => { variantOptions.forEach((option) => { if (option.value === item.title) option.remove(); }); }); observer.disconnect(); }); if (unavailableVariants.length > 0 && productVariants.options.length === 1) { const addToCartForm = document.querySelector('form[ action="/cart/add"]'); if (window.MutationObserver && addToCartForm.length) { if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } const config = { childList: true, subtree: true }; observer.observe(addToCartForm, config); } } }); } });