X

8.5'x32' Alcom Enclosed Cargo 8.5x32 Car Hauler

2025 Alcom 8.5x32 Enclosed Car Hauler Trailer

**Standard Trailer Features and Upgrades**

* 5000# Torsion Axles
* 15in Aluminum Wheels
* 16in On Center Walls
* 16in On Center Floor
* 16in On Center Roof
* .030 Screwless Skin
* One Piece Aluminum Roof
* Interior Height 82in
* Rear Door Opening 80in
* 2-5/16 in Coupler
* 2 Dome Lights
* Exterior Led Lights
* (4) HD Rims
* (2) Safety Chains
* 4-Year Limited Warranty
White Vinyl Faced Luan Walls
Flat Front w/ Cast Corners
8.5'x32' Alcom Enclosed Cargo 8.5x32 Car Hauler
Price: $28,000 On Sale! $22,999
Black - Enclosed Cargo/Car Racing
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 81016
VIN: 4TCS3232SHX81016
Condition: New
Year: 2025
Manufacturer: Alcom Inc.
Model: 8.5x32 Car Hauler
Length: 32'
Width: 8.5'
Height:
GVWR (lbs): 9,990
Weight (lbs): 3,400
Payload (lbs): 6,590
Features: Ramp Gate, Rear Spoiler w/ Load Lights, 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'; }); });