Royal Amazing Blue Long Sleeves Tulle Prom Dress With Appliques | Ballbellas

$249.00
Color:  Same as Picture
Size:  US2
Quantity
Fast worldwide shipping
Guaranteed Return
Professionally made
Secure payments
Description

We could custom made 70+ colors & all sizes, if you do not not find the color name listed, pls leave message on special instructions to note the exact color you need.

Also custom size is available, if you need your dress customized, pls leave your bust, waist, hips & barefoot height size in the order remark. Thank you.

Size Chart
US SIZE
UK/AU SIZE
EUR SIZE
BUST
WAIST
HIPS
HIEGHT
2 6 32 32.5/83 25.5/65 35.75/91 63/160
4 8 34 33.5/84 26.5/68 36.75/92 65/160
6 10 36 34.5/88 27.5/70 37.75/96 65/165
8 12 38 35.5/90 28.5/72 38.75/98 65/165
10 14 40 36.5/93 29.5/75 39.75/101 67/170
12 16 42 38/97 31/79 41.25/105 67/170
14 18 44 39.5/100 32.5/83 42.75/109 69/175
16 20 46 41/104 34/86 44.25/112 69/175
14w 20 44 41/104 34/86 43.5/110 69/175
16w 22 46 43/109 36.25/92 45.5/116 69/175
18w 24 48 45/114 38.5/98 47.5/121 69/175
20w 26 50 47/119 40.75/104 49.5/126 69/175
22w 28 52 49/124 43/109 51.5/131 69/175
24w 30 54 51/130 45.25/115 53.5/136 69/175
26w 32 56 53/135 47.5/121 55.5/141 69/175
Shipping

Ballbellas.com custom made and deliver bridesmaid dresses, wedding dresses & evening prom dresses with various shipping methods for different customers to choose. In order to satisfy all customers' requirements, most of our dresses are made to order. This means it takes time for us to make your dresses and then we also need about 3-5 work days to ship it to you. 

Receiving time=Processing time+Shipping time

Processing Time

12 workdays

If you are in an urgent, we have rush order service , you can pay the $40 rush order fee together with your dress, we can shorten the processing time to 5-10 days. And leave a note about the date you need get the dress.

Shipping Method

Standard Shiping: $0 10-15 workdays

Express Shipping:  $29.99 5-7 workdays

Shipping Method

Region

Shipping Time (business days)

Shipping Cost (US Dollars)

Standard Shipping

United States, France, Germany, United Kingdom, Australia, New Zealand, Canada, Ireland, Switzerland, Sweden, Italy, Austria

12-20

$0

All Other Countries

20-25

$0

Express Shipping

United States, France, Germany, United Kingdom, Australia, New Zealand, Canada, Ireland, Switzerland, Sweden, Italy, Austria

5-9

$29.99

All Other Countries

7-10

$49.99

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.