【Spring Discount: spr24】Buy 4 Get 1 Free + Free shipping for order €69
6PCS Cross Stitch Finger Protection Cover Embroidery bandage
1 / 1
0% OFF
embroideryday

6PCS Cross Stitch Finger Protection Cover Embroidery bandage

6P716973

€5.99
268 sold
Qty

Feature:
1. Rich and interesting colors, finger protection.
2. Non-woven material, with the characteristics of breathable perspiration, non-sticking to hair, high elasticity, easy to tear, hypoallergenic and comfortable.
3. Provide adjustable tightening force and support force to the bandaged part, and the tape can be torn off manually without scissors.

Specification:
Color: Random pattern 6PCS
Size: 2.5cm/0.98in in width
Stretch length: 4.5m/14.75ft
Material: Non-woven fabric, elastic spandex yarn, natural latex
Uses: Writing/sports/laborers to protect fingers

Included: 6PCS Random pattern Finger Bandage

Note to Retail Shops: We have only recently started to offer wholesale cross stitch kit to stores.

WHOLESALE DISCOUNT

€300 - €30 code:EBDWH30
€500 - €50 code:EBDWH50
€800 - €80 code:EBDWH80
€1000 - €100 code:EBDWH100
€2000 - €200 code:EBDWH200
€3000 - €300 code:EBDWH300

Buy More Save More
Extra Bonus for our ecommerce customers(also can enjoy sitewide promotion Buy 4 get 1 Free)


If you are a Retailer and would be interested in selling our cross stitch  kit please click on the link below, or if you have any queries please email us at the addresses below:

https://www.embroideryday.com/



Embroideryday is our publisher and distributor to Retail stores around the world.

Embroideryday - is a new cross stitch brand created by a group of designers who love cross stitch, this project is intended as a wholesale business in Europe Erea, founded in 2021. Kits are manufactured at Our own factories, and provide the highest quality. We strive to get the items directly from factory and brand sources to ensure the quality and reasonable price. Meanwhile we offers more than 10000 patterns to choose.


We are offering to cross stitch fans the largest range of lovely designs, always new and expanding like: Traditional embroidery kits with more complicated patterns in different techniques: cross stitch, combined with outlines, stitches in 1, 2, 3 and 5 threads on types of fabric like canvas.

We sell cross stitch as kits with all materials, which is convenient for customers. We offer the kits of various difficulty levels for any taste and budget.

On sale cross stitch kits have two types, one is Stamped Printed Cross Stitch (suitable for beginners and interested users), and the other is Counted Cross Stitch (suitable for a certain degree of familiarity with cross stitch). 

Millions of crafters around the world have discovered the joy and stress-relieving benefits of Cross Stitch kits

If you don't like normal ones, Special diy kits we recommend customers for try:

Cross Stitch CRAFTS / CUSTOM FOR PHOTO


Professional Tools also sell online with many choices(Tools click link). 

Our motto is “Best products for you”, and we follow it by ensuring that our products have exclusive deals and special promotions only for you.
Safety and quality are of the utmost importance to us. From the manufacturer to your doorstep, we go above and beyond what's legally required to ensure each product meets our high quality standards.

Company Name: Shenzhen Huanjin Technology Co., Ltd.

Address: Room 401, Building No.1, Xintianxia Industrial City, Vanke City Community, Bantian Street, Longgang District, Shenzhen

【Our company only has this Cross Stitch website(embroideryday.com, please look for our brand, other similar websites are fake, thanks for your support】


If needlework is the aim of your business too, then you will surely be interested in our offers for wholesale customers

Thank you for your choice.

Truspilot Reviews>>>

You May Also Like Don't Like These?
Collection list
Disney Cross stitch
Harry Potter
Anime
Embroidery
Character
Glass Painting
Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.