X

7.5'x14' Alcom Enclosed Cargo 7.5x14 79"

2025 Alcom 7.5x14 Enclosed Trailer 

#### Standard Trailer Features and Upgrades

* All-Aluminum Construction, Integrated Frame Design
* 32�x66� Side Door w/Paddle Handle & Piano Hinge
* One Piece Aluminum Roof
* Plastic Salem Vents
* 2�x4� Integrated Frame
* (2) Dome Light w/Switch
* 24� O/C Floor & Roof Studs
* Exterior LED Lighting
* 16� O/C Wall Studs
* White Vinyl Faced Luan Walls
* 24� V-Nose Front
* 3/4� Water Resistant Decking
* 24� Stone Guard
* Interior Cove Trim
* 2000lb Center Jack w/Foot
* 2-5/16� Coupler w/Safety Chains
* 2-3500# Torsion Braked Zero Degree Axles
* Screwless .030� Bonded Sides
* Rear Ramp w/Spring Assist w/Aluminum Hardware
* 3� Exterior Trim
* Extra-Wide Rear Bulkhead w/Slimline Stop/Turn/Tail Lights (84� Opening)
* 4-Year Limited Warranty
* 79" Interior Height
* 75" Rear Door Opening
7.5'x14' Alcom Enclosed Cargo 7.5x14 79"
Price: $10,540 On Sale! $9,780
Silver - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 00085
VIN: 4TCSE1429SHS00085
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model: 7.5x14
Length: 14'
Width: 7.5'
Height: 79"
GVWR (lbs): 7,000
Weight (lbs): 1,840
Payload (lbs): 5,160
Features: Barlock on Door, 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'; }); });