X

6'x12' Alcom Enclosed Cargo 79"

2026 Alcom Xpress 6x12 Enclosed Trailer 

Model Number XPRESS6x12SA-IF

Box (WxLxH) 72"x12'x75"

Interior (WxLxH) 69.5"x11'9"x79"

Overall (WxLxH) 94"x16'4"x94"

Deck Height 18"

Rear Door Opening (WxH) 64" x 69"

Axle(s) - Qty/Rating 1-3500#

Wheels 15" Black

Tires 205/75R15

GVWR 2990#

Curb Weight 955#

Payload 2035#

Hitch Height 17"
32" x 72" Curbside Door
6" Extra Height

6'x12' Alcom Enclosed Cargo 79"
Our Price! $5,620
White - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 028752
VIN: 5WFBE1214TD028752
Condition: New
Year: 2026
Manufacturer: Alcom Inc.
Model: XPRESS6X12SA-XLT-P
Length: 12'
Width: 6'
Height: 79"
GVWR (lbs): 2,990
Weight (lbs): 955
Payload (lbs): 2,035
Features: Barlock on Door, Rock Shield, Screwless Exterior, Side Door

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'; }); });