X

7'x14' Alcom Enclosed Cargo XPRESS XLT 7x14 84"

2025 Alcom Xpress 7x14 Enclosed Trailer 

Standard Trailer Features and Upgrades

* All-Aluminum Construction
* One-Piece Aluminum Roof
* Integrated Frame Design
* V-Nose Construction
* 24" Stone Guard
* Leaf Spring Axle w/4" Drop
* (4) HD 5,000# Recessed D-Rings
* HD Rear Ramp w/Spring Assist & Aluminum Hardware
* Plastic Salem Vents
* (1) Interior Dome Light Near SAD (No Wall Switch)
* LED Slimline Stop/Turn/Tail Lights
* LED ID Marker Light Bar (Top/Center Bulkhead)
* Exterior LED Lighting
* 3/4" Water Resistant Decking
* 3/8" Water Resistant Interior Walls
* Interior Cove Trim
* 2-5/16" Coupler w/Safety Chains
* Screwless .030 Bonded Sides
* 3" Exterior Trim
* 4-Year Limited Warranty
* 84" Interior Height
* 80" Rear Door Opening
* Rear Barn Doors
7'x14' Alcom Enclosed Cargo XPRESS XLT 7x14 84"
Price: $8,289 On Sale! $7,999
White - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 31259
VIN: 5WFBE1422SS031259
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model: XPRESS XLT 7x14
Length: 14'
Width: 7'
Height: 84"
GVWR (lbs): 7,000
Weight (lbs): 1,480
Payload (lbs): 5,520
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'; }); });