Anorthite Sweater Drop-ship Kit

Noro


$ 259.99
A prepacked kit for the "Anorthite Sweater"
Includes colorful dragon egg balls of Ito,
coordinated with matching solid Malvinas by Noro Yarns
& one FREE copy of the leaflet.

MEASUREMENTS
Bust: 45 to 69.5 Inches (114-158 cm)
Length: 22 to 24 Inches (56-61cm)
Upper Arm: 15.25 to 19 Inches (38-48cm)

GAUGE
11 sts and 16 rows to 4in/10cm over St st using size
US 13/9mm needles (or size to obtain gauge)
KIT SIZE XS through L
2 balls Malvinas + 4 balls (2 each) in 2 colors of Ito.
Bust: 45-49.5" (114-126cm), Length: 22-22.5" (56-57cm), Upper Arm: 15.25-16" (38-40cm)
KIT SIZE XL through XXL
3 Balls of Malvinas + 4 balls (2 each) in 2 colors of Ito.
Bust: 54-58" (136-148cm), Length: 23-23.5" (58.5-59.5cm), Upper Arm: 17-18" (43-45cm)
KIT SIZE XXXL through XXXXL
3 Balls of Malvinas + 6 balls (3 each) in 2 colors of Ito.
Bust: 62.5" (158cm), Length: 24" (61cm), Upper Arm: 19" (48cm)

 

This gorgeous sweater kit ships from Knitting Fever in Long Island.  We have these two yarns in the store, so if you want to build your own - come on in!

Related Products


const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/products/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }