X

6'x12' Alcom Enclosed Cargo XPRESS6X12SA-XLT-P 76"

2026 Alcom Xpress 6x12 Enclosed Trailer 

Model Number

XPRESS6x12SA-XLT-P

Subframe

2"x3"

Floor & Roof Studs

24" O/C

Wall Studs

16" O/C

Box Dimensions (WxLxH)

72"x12'x78"

Interior (WxLxH)

69.5"x11'9"x76"

Overall (WxLxH)

94"x16'4"x97"

Deck Height

18"

Hitch Height

17"

V-Nose

12"

Axle(s) - Qty/Rating

1-3500# Idler

GVWR

2990#

Wheels

15" Gloss Black Mods

Tires

205/75R15

Side Door

32"x66"

Coupler Rating / Ball Size

-- / 2"

Jack

2000# Center Jack

Safety Chains

--

6'x12' Alcom Enclosed Cargo XPRESS6X12SA-XLT-P 76"
Our Price! $5,890
Charcoal - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 030533
VIN: 5WFBE1212TD030533
Condition: New
Year: 2026
Manufacturer: Alcom Inc.
Model: XPRESS6X12SA-XLT-P
Length: 12'
Width: 6'
Height: 76"
GVWR (lbs): 2,990
Weight (lbs): 955
Payload (lbs): 2,035
Features: Ramp Gate, 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'; }); });