${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
Larger Sizes - Girl
657 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
657 Products
Spring Brand - Chinese Acient Girls 11CT/14CT Stamped Cross Stitch 241*97CM(86Colors+ 8 colors of bead )
from
$80.99
Butterfly Girl Holding Skull 11CT/16CT Stamped Cross Stitch 50*50CM
from
$10.99
Spring Brand - Girl 11CT/14CT/16CT Stamped Cross Stitch 90*100CM (65Colors)
from
$33.99
Little Girl With Books 11CT Stamped Cross Stitch 30*90CM
from
$11.99
+1
Spring Brand - Butterfly Girl 11CT/14CT Stamped Cross Stitch 77*99CM
from
$26.59
【Mona Lisa Brand】Girl 11CT Stamped Silk Cross Stitch 50*72CM
$14.99
Girl And Cat 11CT Stamped Cross Stitch 50*65CM
$13.99
Color Half Face Girl 11CT Stamped Cross Stitch 50*60CM
$11.99
Flower Girl 11CT Stamped Cross Stitch 50*65CM
$13.99
+2
【Huacan Brand】Forest Girl 11CT Stamped Cross Stitch 50*70CM
from
$12.99
+15
Girl 11CT Stamped Cross Stitch 40*90CM
$15.99
【Yishu Brand】Princess Girl 11CT Stamped Cross Stitch 50*80CM
$16.99
Flower Fairy Girl 11CT Stamped Cross Stitch 50*60CM
$12.99
Flower Girl 11CT Stamped Cross Stitch 50*100CM
$20.99
Rainbow Girl 11CT Stamped Cross Stitch 50*75CM
$15.99
【Huacan Brand】Flower And Girl 9CT Stamped Cross Stitch 55*65CM
$16.99
+13
Girl And Cat Alice In Wonderland 11CT/14CT/18CT Stamped Cross Stitch 50*50CM(19.69*19.69in)
from
$11.99
Underwater Weed Girl 11CT Stamped Cross Stitch 40*75CM
$11.99
【Yishu Brand】Princess Girl 11CT Stamped Cross Stitch 50*85CM
$17.99
Butterfly Fairy Girl 11CT Stamped Cross Stitch 50*60CM
$12.99
Butterfly Fairy Girl 11CT Stamped Cross Stitch 50*60CM
$12.99
Black Cat Girl 11CT Stamped Cross Stitch 50*100CM
$19.99
【Yishu Brand】Fairy Girl 11CT Stamped Cross Stitch 40*65CM
$10.99
【Yishu Brand】White Hair Girl 11CT Stamped Cross Stitch 50*65CM
$12.99
【Yishu Brand】Butterfly Fairy Girl 11CT Stamped Cross Stitch 45*60CM
$12.99
【Yishu Brand】Halloween Little Girl 11CT Stamped Cross Stitch 40*60CM
$10.99
Spring Brand - Peony Girl 11CT/14CT Stamped Cross Stitch 59*75CM(54Colors)
from
$15.99
【Yishu Brand】Horror Girl 11CT Stamped Cross Stitch 50*65CM
$13.99
【Yishu Brand】Scary Girl And Stuffed Bear 11CT Stamped Cross Stitch 40*70CM
$11.99
Blonde Witch Girl 11CT Stamped Cross Stitch 45*65CM
$12.99
Rose Girl 11CT Stamped Cross Stitch 35*60CM
$8.99
Girl And Animal 11CT Stamped Cross Stitch 40*60CM
$10.99
【Huacan Brand】Rainbow Ice Cream Girl 11CT Stamped Cross Stitch 40*55CM
$9.99
Girl And Cat 11CT Stamped Cross Stitch 40*80CM
$14.99
Black Cat Girl 11CT Stamped Cross Stitch 50*100CM
$19.99
Cool Girl 11CT Stamped Cross Stitch 50*55CM
$11.99
Spring Brand - Forest Girl 11CT Stamped Cross Stitch 50*65CM
$13.99
Flower Girl 11CT Stamped Cross Stitch 50*65CM
$13.99
+7
【Mona Lisa Brand】Flower Banquet Girl 11CT Stamped Cross Stitch 65*85CM
$20.99
【Huacan Brand】Flower Girl 11CT Stamped Cross Stitch 40*65CM
$12.99
【Huacan Brand】Girl And Cat 11CT Stamped Cross Stitch 40*75CM
$14.99
【Huacan Brand】Girl And Cat 11CT Stamped Cross Stitch 40*75CM
$14.99
【Huacan Brand】Dream Girl And Castle 11CT Stamped Cross Stitch 40*80CM
$15.99
【Yishu Brand】Peach Blossom Girl 11CT Stamped Cross Stitch 40*70CM
$13.99
【Yishu Brand】Halloween Witch Girl 11CT Stamped Cross Stitch 50*65CM
$15.99
【Huacan Brand】Girl And Flower 11CT Stamped Cross Stitch 45*65CM
$14.99
【Yishu Brand】Girl Holding A Bear 11CT Stamped Cross Stitch 45*60CM
$12.99
【Huacan Brand】Angel Girl 14CT Stamped Cross Stitch 40*70CM
$16.99
【Huacan Brand】Girl With Red Roses 11CT Stamped Cross Stitch 40*70CM
$13.99
【Yishu Brand】Fairy Girl In Winter 11CT Stamped Cross Stitch 30*90CM
$12.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