X

7'x12' Maxx D Utility S3X8312

2026 MAXX-D 7x12 Utility Trailer 

2″ ADJUSTABLE COUPLER
7K DROP LEG JACK
2K PIPE MOUNT SWIVEL JACK
4″ CHANNEL WRAP TONGUE
2X3X3/16″ ANGLE FRAME
2X3X3/16″ ANGLE CROSSMEMBERS
2″ SQ TUBE TOP RAILS
NO DOVETAIL/4′ SPRING GATE
1-5.2K BRAKE AXLE
SLIPPER SPRING SUSPENSION
ST225/75R15 D TIRES ON 5.2K
DOUBLE BROKE DP SINGLE AXLE FENDERS
2X8 TREATED WOOD FLOOR
FLUSHMOUNT LED’S/STANDARD SEALED WIRING HARNESS
SPARE TIRE
SPARE TIRE MOUNT

7'x12' Maxx D Utility S3X8312
Price: $5,500 On Sale! $4,999
Green - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 132714
VIN: 5R8BU1218TM132714
Condition: New
Year: 2026
Manufacturer: Maxx D
Model: S3X8312
Length: 12'
Width: 7'
Height:
GVWR (lbs): 2,990
Weight (lbs): 1,435
Payload (lbs): 1,555
Features: Dovetail, Ramp Gate, Spare Mount

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