X

7'x16' Alcom Enclosed Cargo

2026 Alcom 7x16 Enclosed Trailer

NOTE: Dent on driver's side fender. See picture. 

Model Number           XPRESS7x16XLT-BDP

Subframe         2"x4"

Floor & Roof Studs      24" O/C

Wall Studs       16" O/C

Box (WxLxH)    84"x16'x78"

Interior (WxLxH)         81.25"x15'10"x76"

Overall (WxLxH)          101"x20'8"x97"

Deck Height     19"

Hitch Height    18"

Rear Door Opening (WxH)      76"x72"

V-Nose 18"

Axle(s) - Qty/Rating    2-3500# Braked

GVWR  7000#

Wheels            15" Gloss Black Mods

Tires    205/75R15

Side Door        32"x66"

Ball Size           2-5/16"

Jack     2000# Center Jack

Safety Chains   --

Curb Weight    1580#

Payload            5420#

7'x16' Alcom Enclosed Cargo
Our Price! $8,826
Charcoal - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 032559
VIN: 5WFBE162XTS032559
Condition: New
Year: 2026
Manufacturer: Alcom Inc.
Model:
Length: 16'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 1,630
Payload (lbs): 5,370
Features:

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });