X

8.5x26+4 Maxx D Deckover/Gooseneck H8B10226G

2026 MAXX-D 8.5x26+4 Deckover Gooseneck Trailer 

2 5/16" DROP LEG JACKS ON GN
STANDARD HEIGHT I-BEAM NECK W/ FR T-BOX, WINCH PLATE, & SP MT
SPARE MOUNT
8" CHANNEL FRAME WITH TORQUE TUBE
3" CHANNEL ON 12" CENTERS
STAKE POCKETS AND RUBRAIL
4' DOVETAIL W/MINI MAXXD RAMPS
2-8K ELECTRIC BRAKE AXLES
SLIPPER SPRING SUSPENSION
ST215/75R17.5 H TIRES FOR 2/8K
DRIVE OVER FENDERS
2X8 TREATED WOOD FLOOR
FLUSHMOUNT LED'S / STANDARD SEALED WIRING 
4X EXTRA 5/8" BULL NOSE D RINGS BETWEEN FENDERS
RECEIVER HITCH IN REAR


8.5x26+4 Maxx D Deckover/Gooseneck H8B10226G
Price: $15,700 On Sale! $14,999
Gray - Deckover/Gooseneck
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 132747
VIN: 5R8GC262XTM132747
Condition: New
Year: 2026
Manufacturer: Maxx D
Model: H8B10226G
Length: 26'
Width: 8.5'
Height:
GVWR (lbs): 18,000
Weight (lbs): 5,420
Payload (lbs): 12,580
Features: Dovetail, Spare Mount, Spare Tire, Tongue Box

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