Blank Fitted Table Covers Back with Slits

DESCRIPTION TEMPLATE .fc_xq_li{width:254px; height:100px; float:left;margin-right:5px;} .item_fc{ width:845px;} .fc_xq_li img{width:104px; height:68px; cursor:pointer;} .lb_wrap{display:none; z-index: 9998; } .lb_wrap1{display:none; z-index: 9998; } .ceshiv{cursor: pointer;} .lightbox_bg{background-image: url(https://fcanoby.cfmfactory.com:8883/uploads/20200624/c3333a31-c7ae-4903-bcde-565334347db4.png); background-repeat:no-repeat; background-position:96% 5%; background-color:#000; filter:alpha(opacity=70);opacity:.7;position:absolute;left:0;top:0;width:100%;height:100%;z-index:9997;} .lightbox{position:absolute;left:0;top:0%;width:100%;z-index:9999;text-align:center;-moz-user-select: none;-ms-user-select: none;user-select: none;} .lightbox img{-webkit-tap-highlight-color:transparent;-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;} .lightbox p{position:absolute;height:61px;width:38px;top:50%;left:0;z-index:2;background:transparent url(https://fcanoby.cfmfactory.com:8883/uploads/20200624/9857d4ae-ba50-45f0-9971-d5a49de13fef.png) no-repeat left top;margin-top:-30.5px;cursor:pointer; -webkit-tap-highlight-color:transparent; } .lightbox p.next_xq{left:auto;background-position:right top;right:0; -webkit-tap-highlight-color:transparent;} (function(a){ a.fn.LightBox […]

Price:
.fc_xq_li{width:254px; height:100px; float:left;margin-right:5px;}
.item_fc{ width:845px;}
.fc_xq_li img{width:104px; height:68px; cursor:pointer;}
.lb_wrap{display:none; z-index: 9998; }
.lb_wrap1{display:none; z-index: 9998; }
.ceshiv{cursor: pointer;}
.lightbox_bg{background-image: url(https://fcanoby.cfmfactory.com:8883/uploads/20200624/c3333a31-c7ae-4903-bcde-565334347db4.png); background-repeat:no-repeat; background-position:96% 5%; background-color:#000; filter:alpha(opacity=70);opacity:.7;position:absolute;left:0;top:0;width:100%;height:100%;z-index:9997;}

.lightbox{position:absolute;left:0;top:0%;width:100%;z-index:9999;text-align:center;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.lightbox img{-webkit-tap-highlight-color:transparent;-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;}
.lightbox p{position:absolute;height:61px;width:38px;top:50%;left:0;z-index:2;background:transparent url(https://fcanoby.cfmfactory.com:8883/uploads/20200624/9857d4ae-ba50-45f0-9971-d5a49de13fef.png) no-repeat left top;margin-top:-30.5px;cursor:pointer; -webkit-tap-highlight-color:transparent; }
.lightbox p.next_xq{left:auto;background-position:right top;right:0; -webkit-tap-highlight-color:transparent;}

(function(a){
a.fn.LightBox = function(options){
var defaults = {
controls : true //上一张、下一张是否显示,默认是显示true
}
var opts = a.extend(defaults, options);

var lb_wrap = ‘

‘;

var lb_wrap1 = ‘

‘;

a(“body”).append(lb_wrap);
a(“body”).append(lb_wrap1);

//controls
if(opts.controls){
a(“.lightbox”).append(‘

‘);
}

function frambj(obj2){
//imgObj.height是通过img对象获取的图片的实际高度

var gaodu1 = a(window).height()-540
var gaodu2 = gaodu1/2
var margintop = a(window).scrollTop()+gaodu2
obj2.css(“margin-top”,margintop);
}

a(“.ceshiv”).find(“img”).click(function(){

var fujiname = this.className;
//window.alert(fujiname);

var csv1 = ‘‘;
var csv2 = ‘‘;
var csv3 = ‘‘;

if(fujiname == ‘youfang’){

document.getElementById(‘pinshi’).innerHTML=csv1;

}
if(fujiname == ‘shuifang’){

document.getElementById(‘pinshi’).innerHTML=csv2;

}
if(fujiname == ‘huofang’){

document.getElementById(‘pinshi’).innerHTML=csv3;

}

a(“.lightbox_bg”).css(“margin-top”,a(window).scrollTop());
a(‘body’).css(‘overflow’,’hidden’);

a(“.lb_wrap1”).fadeIn();
frambj(a(“.lightbox”));

});

function imgobj(obj1, obj2){
//imgObj.height是通过img对象获取的图片的实际高度
var imgObj = new Image();
imgObj.src = obj1.attr(“src”);
var gaodu1 = a(window).height()-523
var gaodu2 = gaodu1/2

var margintop = a(window).scrollTop()+gaodu2
obj2.css(“margin-top”,margintop);
}

this.each(function(){
var obj = a(this);
var numpic = obj.find(“.fc_xq_li”).length;
var num = 0;

//点击赋值并显示
obj.find(“img”).click(function(){
var src = a(this).attr(“src”);
a(“.lg_img”).attr(“src”,src);

a(“.lb_wrap”).fadeIn();

a(“.lightbox_bg”).css(“margin-top”,a(window).scrollTop());
a(‘body’).css(‘overflow’,’hidden’);
a(“.lg_img”).fadeIn();
a(“.prev_xq”).fadeIn().siblings(“.next_xq”).fadeIn();
imgobj(a(“.lg_img”), a(“.lightbox”));
num = a(this).parent().index(); //获取当前图片的父元素的索引并赋给num为后边点击上一张、下一张服务
});

//上一张
a(“.prev_xq”).click(function(){
if(num == 0){
num = numpic;
}
var src = obj.find(“.fc_xq_li”).eq(num-1).find(“img”).attr(“src”);
a(“.lg_img”).attr(“src”,src);
imgobj(a(“.lg_img”), a(“.lightbox”));

num–;
});

//下一张
a(“.next_xq”).click(function(){
if(num == numpic-1){
num = -1;
}
var src = obj.find(“.fc_xq_li”).eq(num+1).find(“img”).attr(“src”);
a(“.lg_img”).attr(“src”,src);
imgobj(a(“.lg_img”), a(“.lightbox”));

num++;
});

//点击除了上一张、下一张之外的其他地方隐藏
a(“.lb_wrap”).click(function(e){
var e = e || window.event;
var elem = e.target || e.srcElement;
while(elem){
if (elem.className && elem.className.indexOf(‘prev_xq’)>-1) {
return;
}
if(elem.className && elem.className.indexOf(‘next_xq’)>-1){
return;
}
elem = elem.parentNode;
}
a(‘body’).css(‘overflow’,’scroll’);
a(this).find(“img”).attr(“src”,”loading.gif”).hide(); //隐藏后,再将默认的图片赋给lightbox中图片的src
a(this).find(“.prev_xq”).hide().siblings(“.next_xq”).hide();
a(this).fadeOut();
});

a(‘.lb_wrap1’).click(function(){
a(‘body’).css(‘overflow’,’scroll’);
a(this).fadeOut();

});

})
}
})(jQuery);

$(function(){
$(“.item_fc”).LightBox({
controls : false
});
})

This blank fitted table cover combines clean, tailored styling with practical features for professional displays. The dual back slits provide discreet access to hidden under-table storage while allowing you to sit comfortably behind the table—ideal for trade shows, receptions, and pop-up events. It keeps your setup organized and polished from every angle, with no extra clips or fasteners needed.
Tablecloth Fabric
Dual-Slit Design: Sleek Fitted Table Cover with Comfort & Concealed Storage

Choose from six vibrant classic shades in 300D polyester, or opt for the sturdy white 600D PU polyester version. Both fabrics are built for long-term use: machine washable, wrinkle-resistant, and reliably smooth — even after repeated setups and takedowns.

blank table cover
Material
Picture
Weight

Features

 

Wrinkle-resistant
300D polyester
wrinkle resistant 300D polyester
165g/m²
Wrinkle resistant & Heavyweight-knitted polyester
Full color dye sublimation printing
Suitable for both indoor and outdoor displays
Tablecloth Sizes

Blank Table Covers for Standard Display Tables

Our solid color fitted tablecloth is designed to cover standard 4ft, 6ft and 8ft display tables. If you are not sure which size is suitable for you, you can check the measurement below:

Table Size
( Length*Width*Height)
Table Cover Size
(Width*Height)
4FT table size-S
48″Lx24″Wx29″H
106″W x 82″H
4FT table size-M
48″Lx30″Wx29″H
106″W x 88″H
6FT table size
72″Lx30″Wx29″H
130″W x 88″H
8FT table size
96″Lx30″Wx29″H
154″W x 88″H
Tablecloth Details

This blank fitted table cover is often used together with a custom printed runner. The fitted design ensures a snug fit over the table, while the polyester material provides durability and ease of cleaning. Adding a piece of table runner on the blank table cover allows you to personalize your marketing message and expose your brand.

blank table cover
table runner
table cloth with custom banner
Product Care
All our table covers are washable with cold water and mild detergent. After washing, please use air dry or iron dry it at low setting. The life span of the table cover depends on both display and storage situations. Before storage, please make sure the whole piece is clean and dry.
product care
product care
product care
product care
Questions&Answers

Q: How many colors can you use in printing logo?

A: We use CMYK for printing, so you can use as many colors as you like.

 

Q: Can you make a customized table throw or fitted table cover for me?

A: Yes, the standard table throw sizes are 4′, 6′ and 8′ in our store, but the size of table throw or fitted table cover can also be customized according to your table sizes or template sizes. If you need customized sizes, please contact our representatives for customer service.

 

Q: If I spread the standard cover(4/6/8 ft) to the table, will it be dragged on the ground?

A: No, the edge of the tablecloth is just at the bottom.

 

Q: Is the fabric flame retardant?

A: Yes, we have custom flame retardant fabrics for selection.

 

Q: Can I wash or iron my table cover?

A: Yes, you can clean and smooth your tablecloth by hand-wash and ironing.

 

Q: Will the fabrics fade? How long does it last?

A: To prevent fading and maintain color stability, we use sublimation print to ensure the fast color.

Artwork Requirements

Artwork must be created using the provided templates.

1. Acceptable file types include PDF, AI, EPS, PSD, PNG, TIF, TIFF, JPG, and SVG, among which
AI and PDF are highly recommended.

2. Files must be the same exact size as what is
ordered.

3. The maximum size of the file should be 200M. If you have much larger
files, please contact our customer service representatives.

4. Please review the artwork specification before uploading your file. We will not be responsible for the delayed orders due to artwork that cannot meet the provided requirements.



Notice: For the custom size products, you can just upload your artwork when placing order and our artwork person will help you set up the template.

Safety Test Report

(We offer product compliance to ensure both product safety and quality.)

  • 300D Polyester–CPSC

    PDF DOWNLOAD
  • Wrinkle-resistant and Flame-retardant 300D Polyester — CPSC

    PDF DOWNLOAD
  • Wrinkle-resistant and Flame-retardant 300D Polyester–NFPA 701

    PDF DOWNLOAD
  • Flame Retardant 250g Soft Knitted–NFPA

    PDF DOWNLOAD
  • CFM-GRS-2024-01

    PDF DOWNLOAD

Production Time

4 turnaround options available to fit your different needs:

1 Day Rush Order, 2 Days Fast Order, 3 Days Standard Order, 4 Days Economy Order.

(*production time shall be calculated from artwork being approved).

Delivery Time

From China to the US: About 2-5 Working Days

From China to Australia: About 2-5 Working Days

From China to Canada: About 2-5 Working Days

If you or your clients do not receive products within the scheduled delivery time, you can contact our customer service reps for help.

Reviews

There are no reviews yet.

Be the first to review “Blank Fitted Table Covers Back with Slits”

Your email address will not be published. Required fields are marked *