${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Log in
Create an account
0
New Arrival
Large Sizes - New Arrival
Joy Sunday - New Arrival
🔥Hot
Bundle Sale
Bundle Sale-Cross Stitch
Bundle Sale-Accessories
Low to $2.99
All For $2.99
Low Than $4.99
All For $4.99
All For $5.99
All For $6.99
All For $7.99 - $8.99
All For $9.99 - $11.99
All For $12.99 - $14.99
Cross Stitch Categories
Hot Collection
Seasons & Month
Fairy Scenery
Harry Potter
Disney
Pokemon
Sailor Moon
Halloween
Christmas
Glass Art
Girl & Lady
Anime
Owl
Cat
Religion
Silhouette
Goblin & Gnome
Town
Retro Style
White Bear
Colorful House
More Collection
Flower
Landscape
Animal
Character
Cartoon
Film
Still Life
New style
More
CT Specification
9 CT
11 CT
14 CT
16 CT
18 CT
Suitable For Beginners
Customer Satisfied Products✨
Brand Collection
Joy Sunday
Spring Brand
Mona Lisa Brand🔥
Huacan Brand
Yishu Brand
DIY Brand
Stamed /Counted Cross Stitch
Stamped Cross Stitch
Counted Cross Stitch
Large Sizes & Small Sizes
Large Sizes Cross Stitch
Small Sizes Cross Stitch
Accessories
Frame Hoop
Thread And Thread Holder
Finger Protection
Needle And Needle Threader
Scissors
Sewing Tool & Crochet
Sewing Tool & Knitting Tools -Wool
Sewing Tool & Knitting Tools -Bag
Crafts
Bookmark
Shopper Bag
Pillow
Keychain
Sock
Coaster
Greeting Card
🔥Bead embroidery🔥
🔥Spring Brand Cross Stitch
🔥Joy Sunday
Joy Sunday - New Arrival
Joy Sunday - Seasons & Month
Joy Sunday - Landscape
Joy Sunday - Large Sizes
Joy Sunday - Christmas
➯Silk Cross Stitch★
Large Sizes & Small Sizes
Large Sizes
Large Sizes - Disney
Larger Sizes - Girl
Larger Sizes - Landscape
Larger Sizes - Animal
Large Sizes - Joy Sunday
Small Sizes
New Style
New Style- Girl
New Style - Anime Girl
New Style- Cartoon
New Style-Animal
Tips Of Cross Stitch★
✨Finished Cross Stitch Display
How To Embroider?
What is 9CT,11CT, 14CT, 16CT And 18CT ?
The difference between printed/stamped cross stitch and counted cross stitch
How to wash printed/stamped cross stitch?
✨Tips For Beginners
More Promotions
FAQs
More links
New Arrival
New Arrival
Large Sizes - New Arrival
Joy Sunday - New Arrival
🔥Hot
Bundle Sale
Bundle Sale
Bundle Sale-Cross Stitch
Bundle Sale-Accessories
Low to $2.99
Low to $2.99
All For $2.99
Low Than $4.99
All For $4.99
All For $5.99
All For $6.99
All For $7.99 - $8.99
All For $9.99 - $11.99
All For $12.99 - $14.99
Cross Stitch Categories
Cross Stitch Categories
Hot Collection
Hot Collection
Seasons & Month
Fairy Scenery
Harry Potter
Disney
Pokemon
Sailor Moon
Halloween
Christmas
Glass Art
Girl & Lady
Anime
Owl
Cat
Religion
Silhouette
Goblin & Gnome
Town
Retro Style
White Bear
Colorful House
More Collection
More Collection
Flower
Landscape
Animal
Character
Cartoon
Film
Still Life
New style
More
CT Specification
CT Specification
9 CT
11 CT
14 CT
16 CT
18 CT
Suitable For Beginners
Customer Satisfied Products✨
Brand Collection
Brand Collection
Joy Sunday
Spring Brand
Mona Lisa Brand🔥
Huacan Brand
Yishu Brand
DIY Brand
Stamed /Counted Cross Stitch
Stamed /Counted Cross Stitch
Stamped Cross Stitch
Counted Cross Stitch
Large Sizes & Small Sizes
Large Sizes & Small Sizes
Large Sizes Cross Stitch
Small Sizes Cross Stitch
Accessories
Accessories
Frame Hoop
Thread And Thread Holder
Finger Protection
Needle And Needle Threader
Scissors
Sewing Tool & Crochet
Sewing Tool & Knitting Tools -Wool
Sewing Tool & Knitting Tools -Bag
Crafts
Crafts
Bookmark
Shopper Bag
Pillow
Keychain
Sock
Coaster
Greeting Card
🔥Bead embroidery🔥
🔥Spring Brand Cross Stitch
🔥Joy Sunday
🔥Joy Sunday
Joy Sunday - New Arrival
Joy Sunday - Seasons & Month
Joy Sunday - Landscape
Joy Sunday - Large Sizes
Joy Sunday - Christmas
➯Silk Cross Stitch★
Large Sizes & Small Sizes
Large Sizes & Small Sizes
Large Sizes
Large Sizes
Large Sizes - Disney
Larger Sizes - Girl
Larger Sizes - Landscape
Larger Sizes - Animal
Large Sizes - Joy Sunday
Small Sizes
New Style
New Style
New Style- Girl
New Style - Anime Girl
New Style- Cartoon
New Style-Animal
Tips Of Cross Stitch★
Tips Of Cross Stitch★
✨Finished Cross Stitch Display
How To Embroider?
What is 9CT,11CT, 14CT, 16CT And 18CT ?
The difference between printed/stamped cross stitch and counted cross stitch
How to wash printed/stamped cross stitch?
✨Tips For Beginners
More Promotions
FAQs
Log in
${item}
Recently searched
${item}
Hot searches
${item.word}
Results
${item.highlightHtml}
const TAG = 'spz-custom-smart-search-location'; const SMART_PRODUCR_SEARCH_WRAP_CLASSNAME = 'app-smart-product-search-wrap'; const THEME_NAME = window.SHOPLAZZA.theme.merchant_theme_name; const BREAKPOINT = 960; const DELAY = 300; class SpzCustomSmartSearchLocation extends SPZ.BaseElement { constructor(element) { super(element); this.mobileHeaderPluginParentEle = null; } static deferredMount() { return false; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.init(); this.listenerResize(); } init() { // PC-end not load if (this.isDesktop()) { return; } if (!window.__isLoadAppSmartSearch__) { this.initSmartSearch(); console.log('__isLoadAppSmartSearch__'); } // B-end must reload if (window.self === window.top && !window.__isLoadAppSmartSearch__) { window.__isLoadAppSmartSearch__ = true; } } initSmartSearch() { if (this.hasMobileUpperRightPlugin()) { this.showMobileSmartSearch(); } else { this.addMobileSmartSearch(); } } listenerResize() { window.removeEventListener('resize', window.smartSearchResizeCallback); window.smartSearchResizeCallback = SPZCore.Types.debounce( this.win, () => { this.init(); }, DELAY ); window.addEventListener('resize', window.smartSearchResizeCallback); } isDesktop() { const mediaQueryList = window.matchMedia(`(min-width: ${BREAKPOINT}px)`); return mediaQueryList.matches; } hasMobileUpperRightPlugin() { return !['geek', 'flash', 'boost'].includes(THEME_NAME.toLocaleLowerCase()); } showMobileSmartSearch() { this.mobileHeaderPluginParentEle = this.getMobileHeaderPluginParentEle(); this.setMobileHeaderIconsPluginStyle(this.mobileHeaderPluginParentEle); } getMobileHeaderPluginParentEle() { const MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP = { nova: '.header__mobile #header__plugin-container', hero: '.header__icons .tw-flex.tw-justify-end.tw-items-center.tw-space-x-7', onePage: '.header__mobile #header__plugin-container', wind: '#header-icons .flex.justify-end.items-center', eva: '#header__icons .plugin_content' }; const headerPluginParentSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_PLUGIN_PARENT_ELE_MAP) ); return document.querySelector(headerPluginParentSelector); } setMobileHeaderIconsPluginStyle(pluginParentEle) { if (!pluginParentEle) { return; } const containHidden = pluginParentEle.classList.contains('md:hidden'); const containTwHidden = pluginParentEle.classList.contains('md:tw-hidden'); if (containHidden || containTwHidden) { Array.from(pluginParentEle.children).forEach((pluginElement) => { if (!this.hasSmartSearchPlugin(pluginElement)) { pluginElement.style.display = 'none'; } }); pluginParentEle.classList.remove('md:hidden', 'md:tw-hidden'); } else { const smartSearchPluginElement = Array.from(pluginParentEle.children).find( (pluginElement) => { return this.hasSmartSearchPlugin(pluginElement); } ); smartSearchPluginElement.style.display = 'block'; } } hasSmartSearchPlugin(pluginElement) { return ( pluginElement.classList.contains(`${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`) || pluginElement.querySelectorAll(`.${SMART_PRODUCR_SEARCH_WRAP_CLASSNAME}`).length > 0 ); } addMobileSmartSearch() { this.mobileHeaderIconsEle = this.getMobileHeaderIconsEle(); this.smartSearchWrapEle = this.getSmartSearchWrapEle(); this.appendSmartSearchToHeader(); } getMobileHeaderIconsEle() { // Must be the parent element of the plugin const MOBILE_HEADER_ICONS_ELE_MAP = { geek: '#header-mobile-container .flex.items-center.justify-end.flex-shrink-0', flash: '#header-layout .header__icons', boost: '.header__mobile-bottom .tw-flex.tw-items-center.tw-justify-end.tw-flex-1' }; const headerIconsSelector = this.combineMultipleSelectors( Object.values(MOBILE_HEADER_ICONS_ELE_MAP) ); return document.querySelector(headerIconsSelector); } getSmartSearchWrapEle() { const smartSearchWrapEle = document.querySelector(this.getSmartSearchWrapSelector()); if (!smartSearchWrapEle) { return null; } return smartSearchWrapEle; } appendSmartSearchToHeader() { if (!this.smartSearchWrapEle) { return; } this.mobileHeaderIconsEle.insertAdjacentElement('afterbegin', this.smartSearchWrapEle); } getSmartSearchWrapSelector() { const PLUGIN_POSITION = { DRAWER: 'drawer', HEADER_TOP: 'headerTop' }; // only one this plugin of ancestor element const MOBILE_PLUGIN_POSITION_ELE_MAP = { [PLUGIN_POSITION.DRAWER]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header__drawer' }, [PLUGIN_POSITION.HEADER_TOP]: { geek: '#header-menu-mobile #menu-drawer', flash: '#menu-drawer .plugin__header-content', boost: '.header-content .logo-wrap' } }; const MbPluginPositionInTheme = [ ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.DRAWER]), ...Object.values(MOBILE_PLUGIN_POSITION_ELE_MAP[PLUGIN_POSITION.HEADER_TOP]) ]; return Object.values(MbPluginPositionInTheme).reduce((pre, ancestor) => { if (pre === '') { return `${ancestor} .app-smart-product-search-wrap`; } if (pre.includes(ancestor)) { return pre; } return `${pre},${ancestor} .app-smart-product-search-wrap`; }, ''); } combineMultipleSelectors(selectorList) { return selectorList.reduce((pre, selector) => { if (pre === '') { return `${selector}`; } if (pre.includes(selector)) { return pre; } return `${pre},${selector}`; }, ''); } } SPZ.defineElement(TAG, SpzCustomSmartSearchLocation);
Top searched
Blind Box Random Cross Stitch (Buy 2 Get 1 Free, Add 3 To Your Cart!)
$5.99
Month 11CT Stamped / Counted Cross Stitch 36*36CM
$5.69
+9
Joy Sunday Month 14CT Stamped Cross Stitch
from
$3.99
+10
Joy Sunday Season Angel 14CT Stamped Cross Stitch 36*52CM(14.17*20.47in)
$7.99
+2
Joy Sunday Seasons Lantern 11CT/14CT/16CT Stamped Cross Stitch 21*30CM
from
$4.99
+2
Custom Unique Cross Stitch - 11 CT Stamped Cross Stitch (👇Upload Photo - Proper Size - Payment & Delivery)
from
$11.99
Elephant
36 Products
Featured
Price, low to high
Price, high to low
Newest in
Total sales, high to low
Purchases, high to low
Page views, high to low
36 Products
Joy Sunday Love Elephant 14CT Stamped Cross Stitch 17*27CM
$2.99
【Huacan Brand】Elephant 18CT Stamped Cross Stitch 20*20CM
$3.99
【Huacan Brand】Baby Elephant And Flowers 9CT Stamped Cross Stitch 45*45CM
$10.99
【Huacan Brand】Baby Elephant And Flowers 9CT Stamped Cross Stitch 45*45CM
$10.99
Elephant 11CT Stamped Cross Stitch 50*50CM
$12.99
【Huacan Brand】Elephant 11CT Stamped Cross Stitch 50*50CM
$10.99
【Huacan Brand】Elephant 18CT Stamped Cross Stitch 20*20CM
$3.99
【Mona Lisa Brand】Auspicious Elephant 11CT Stamped Cotton/Silk Cross Stitch 50*50CM
from
$10.99
【Huacan Brand】Silhouette Elephant 11CT Stamped Cross Stitch 50*50CM
$12.99
【Yishu Brand】Elephant 11CT Stamped Cross Stitch 40*53CM
$11.99
【Huacan Brand】Tai Chi Yin Yang Elephant 14CT Stamped Cross Stitch 40*40CM
$10.99
【Mona Lisa Brand】Colorful Elephant 11CT Stamped Cross Stitch 50*50CM
$9.99
Joy Sunday Naughty Little Elephant 14CT Stamped Cross Stitch 35*47CM
$7.99
【Huacan Brand】Elephant In Basket 18CT Stamped Cross Stitch 30*30CM
$8.99
【Huacan Brand】Elephant 11CT Stamped Cross Stitch 40*40CM
$7.99
Joy Sunday African Elephant 14CT Stamped Cross Stitch 41*41CM
$8.99
【Huacan Brand】Elephant 18CT Stamped Cross Stitch 20*20CM
$3.99
Elephant 11CT Stamped Cross Stitch 40*40CM
$6.99
King Elephant 9CT Stamped Cross Stitch Bead Embroidery 38*55CM
$37.99
【Huacan Brand】Elephant 14CT Stamped Cross Stitch 40*53CM
$13.99
【Yishu Brand】Baby Elephant 11CT Stamped Cross Stitch 40*40CM
$8.99
Elephant Mother And Child 3 9CT Stamped Cross Stitch Bead Embroidery 25*57CM
$27.99
Elephant Mother And Child 2 9CT Stamped Cross Stitch Bead Embroidery 42*56CM
$40.99
【Yishu Brand】Flowers And Elephants 11CT Stamped Cross Stitch 45*45CM
$11.99
Sleeping Baby Elephant 11CT/18CT Stamped Cross Stitch 40*40CM
from
$7.99
Elephant Shadow In The Sunset 9CT Stamped Cross Stitch Bead Embroidery 28*28CM
$15.99
Elephant Mother And Child 9CT Stamped Cross Stitch Bead Embroidery 35*42CM
$21.99
【Huacan Brand】Watercolor Bow Baby Elephant 11CT Stamped Cross Stitch 40*40CM
$8.99
【Huacan Brand】Retro Poster - Elephant 11CT Stamped Cross Stitch 40*60CM
$10.99
【Huacan Brand】Retro Poster - Elephant 11CT Stamped Cross Stitch 40*60CM
$10.99
【Huacan Brand】Retro Poster-Easter Egg Elephant 11CT Stamped Cross Stitch 40*60CM
$10.99
【Yishu Brand】Elephant Mother And Child 11CT Stamped Cross Stitch 50*65CM
$13.99
Elephant 11CT Stamped Cross Stitch 50*70CM
$14.99
【Huacan Brand】Tai Chi Diagram - Elephant 11CT Stamped Cross Stitch 40*40CM
$8.99
DIY - Elephant 11Ct Counted Cross Stitch 40*50Cm
$8.99
【DIY Brand】Elephant 11CT Stamped Cross Stitch 40*50CM
$8.99
Sorry, there are no products in this collection.
Collection list
Counted Cross Stitch
Stamped Cross Stitch
Accessories
Low Than $4.99
Large Sizes
Halloween
Christmas
Cat
Disney
Glass Art/Window Flower
Harry Potter
Tai chi
Girl&Lady
Dragon & Pterosaur
Fairy Scenery
Sign up and save
Entice customers to sign up for your mailing list with discounts or exclusive offers. Include an image for extra impact.
SUBSCRIBE
Thanks for subscribing
No Thanks