X

7'x24' Maxx D Equipment C4X8324

2026 MAXX-D 7x24 Equipment Car Hauler Trailer 

2″ ADJUSTABLE COUPLER
7K DROP-LEG JACK
5″ CHANNEL WRAP TONGUE
5″ CHANNEL FRAME
3″ CHANNEL ON 16″ CENTERS
STAKE POCKETS AND RUBRAIL
2' DOVETAIL/5' SLIDE IN RAMPS W/ STABILIZER JACKS
2-3.5K BRAKE AXLES
SLIPPER SPRING SUSPENSION
ST205/75R15 C RADIAL TIRES
DOUBLE BROKE DIAMOND PLATE FENDERS
2X8 TREATED WOOD FLOOR
FLUSHMOUNT LED’S/STANDARD WIRING
SPARE TIRE
SPARE MOUNT

7'x24' Maxx D Equipment C4X8324
Price: $7,649 On Sale! $6,649
Gray - Equipment/Car Racing
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 132845
VIN: 5R8BC2423TM132845
Condition: New
Year: 2026
Manufacturer: Maxx D
Model: C4X8324
Length: 24'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 2,700
Payload (lbs): 4,300
Features: Dovetail, Slide Out Ramps, Spare Mount, Spare Tire, Stabilizer Jacks

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'; }); });