IS IT SUMMER YET…? 

Driving to work its raining, its grey, and overall a pretty miserable day, to think we’re in Spring it feels more like winter. It got me thinking it really is quite difficult to decide what to wear! Do you opt for a bold spring colour, maybe a boho beauty top, teamed with your fave denim jacket. Or do you wrap up warm in your favourite winter warmers? With the weather so unpredictable its hard to decide!

 

Arriving at House of 925, coffee in hand, I’ve decided to put together my winterish / springishhh ideas, which will hopefully work for all seasons :) yey!

 

The Cowl Neck Jumper Dress

Cowl neck jumper dresses are great especially in a spring colour such as Pink, Light Grey, or Blue. The spring colours brighten up the look but it also has the ability to keep you snug. On a warmer day, you could even opt to wear it as a dress, with some killer ankle boots - Great for all weathers and occasions. 

 

The Faithful Denim Shirt 

The denim shirt is essential for any wardrobe. The classic piece which in all honesty looks great in all seasons. Denim shirts look good worn as a shirt or for a more casual look wear it open over another top (very arty) Lots of denim shirts are doing the rounds at the moment, I particular like the pearl embellished shirts for that extra impact. 

 

The Oversized Jumper 

Another favourite of mine an oversized jumper can be worn casually with a pair of skinny jeans/leggings or again for the warmer days wear it as a dress with those ankle boots. Keep the colours bright or natural and try to stay away from black which I know can be a tricky one! 

Floral Print dress

The floral print dress looks great worn as a dress or with tights, especially for those cooler days, an oversized cardigan can look great with this and add some extra warmth. 

You can shop all these styles via our website www.houseof925.com
or if you want to be social with us follow us on 
Instagram @house_of_925
Twitter @House_of_925
Facebook @houseof925
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*="/files/"]'); 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(), ); }