X

7'x14' Alcom Enclosed Cargo Xpress 7x14 XLT 82"

2026 Alcom Xpress 7x14 Enclosed Trailer 

Model Number

XPRESS7x14XLT-BDP

Subframe

2"x4"

Floor & Roof Studs

24" O/C

Wall Studs

16" O/C

Box (WxLxH)

84"x14'x84"

Interior (WxLxH)

81.25"x13'10"x82"

Overall (WxLxH)

101"x18'8"x103"

Deck Height

19"

Hitch Height

18"

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

1480#

Payload

5520#

7'x14' Alcom Enclosed Cargo Xpress 7x14 XLT 82"
Our Price! $8,800
Charcoal - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 030532
VIN: 5WFBD142XTD030532
Condition: New
Year: 2026
Manufacturer: Alcom Inc.
Model: Xpress 7x14 XLT
Length: 14'
Width: 7'
Height: 82"
GVWR (lbs): 7,000
Weight (lbs): 1,480
Payload (lbs): 5,520
Features: Barn Doors, 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'; }); });