Single Panel Wide Screen
Single Panel Wide Screen
1. Choose from our bacteriostatic vinyl panels or our optional SureChek® antimicrobial material.
2. Hinged panel ensures years of problem-free use.
3. Wide base for added stability.
4. Smooth rolling twin wheel casters with optional crutch-tips included.
5. Smooth powder-coated steel frame for durability.
3420 – Single Panel Wide Screen
Product Details
The 3420 features a single 42″ wide screen made of flame retardant bacteriostatic 6-mil white vinyl. It has 2″ twin wheel casters and a high strength powder coated steel frame.
Product Specifications
- Weight : 15 lbs. (6.80 kg.)
- Height : 69 in. (175.26 cm.)
- Width : 42 in. (106.68 cm.)
- Frame Type : Powder Coated Steel
- Shipping Weight : 20 lbs. (9.07 kg.)
- Shipping Height : 58 in. (147.32 cm.)
- Shipping Width : 5 in. (12.70 cm.)
- Shipping Depth : 43 in. (109.22 cm.)
3429 – Single Panel Wide Screen with SureChek®
Product Details
- Weight : 15 lbs. (6.80 kg.)
- Height : 69 in. (175.26 cm.)
- Width : 42 in. (106.68 cm.)
- Frame Type : Powder Coated Steel
- Shipping Weight : 20 lbs. (9.07 kg.)
- Shipping Height : 58 in. (147.32 cm.)
- Shipping Width : 5 in. (12.70 cm.)
- Shipping Depth : 43 in. (109.22 cm.)
We are offering the following selections
Standard Color
SureChek® Color Options
We are offering the following selections
Standard Color
SureChek® Color Options
Questions are good answers are BETTER !
1. Q: Some of the privacy screens that I saw have issue of falling to the floor. Do yours have the same issue?
A: No. The steel frame privacy screens stand up to years of use. The wide, sturdy, steel frame eliminates tipping and leaning.
2. Q: Can I replace the screen panels?
A: Yes. Our Privacy Screen panels are replaceable. Please see our Instruction Guide.
3. Q: What are my options for the fabric?
A: Please see the Colors to start browsing all available fabrics.
Did not find what you are looking for ?
Please contact us at 305-556-8700 or click “Contact Us” button below to chat/send email.
One of our customer care associates will be available help you between the hours of 8-5 eastern standard time.
Thank you for visiting our site.
[insert_php]
//MODIFICAR EN VALOR DE LA VARIABLE $slug POR EL SLUG DE LA CATEGORIA QUE SE DESEA BUSCAR
$slug = ‘single-panel-wide-screen’;
$tax_query = array();
$filtro = array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘slug’,
‘terms’ => $slug
);
array_push( $tax_query, $filtro );
$args = array(
‘post_type’ => ‘product’,
‘post_status’ => ‘publish’,
‘tax_query’ => $tax_query,
‘posts_per_page’ => -1,
‘orderby’ => array(
‘nom_clause’ => ‘ASC’
)
);
$products_query= new WP_Query( $args );
if ( ! $products_query->have_posts() ) {
//echo “NADA COMPA”;
echo ‘
‘;
}
else {
foreach ($products_query->posts as $prod) {
/*==========================*/
$img = get_the_post_thumbnail_url( $prod->ID );
$_product = wc_get_product( $prod->ID );
$precio = $_product->get_price();
$link = get_permalink($prod->ID);
echo ‘
‘;
echo ‘
‘;
echo ‘
‘.$prod->post_content.’
View Details>>
‘;
echo ‘
‘;
/*==========================*/
}
}
[/insert_php]