We offer a guaranteed 1-3 working day delivery on all UK orders placed by 4pm. Delivery is Monday – Friday excluding weekends and national bank holidays.
Contact
Contact form
Subscribe to our emails
Be the first to know about new collections and exclusive offers.
Choosing a selection results in a full page refresh.
Opens in a new window.
/* Product Tag Filters – Good for any number of filters on any type of collection pages */
var collFilters = jQuery(‘.coll-filter’);
collFilters.change(function() {
var newTags = [];
collFilters.each(function() {
if (jQuery(this).val()) {
newTags.push(jQuery(this).val());
}
});
if (newTags.length) {
var query = newTags.join(‘+’);
window.location.href = jQuery(‘Liquid error (layout/theme line 397): tag filter argument must be a string or tag’).attr(‘href’).replace(‘/’ + ‘tag’, ‘/’ + query);
}
else {
window.location.href = ‘/collections/types?q=’;
}
});