X

8.5x26+4 Timpte Deckover/Gooseneck 1626 GNDO

2026 Timpte 8.5x26 Deckover Gooseneck (8.5x25+4)

Standard Trailer Features and Upgrades

The strength and durability to haul more! These all-aluminum trailers offer several desired features with the empty weight to max out payload. The 12-degree approach angle on split tilt and 14-degree approach on deck over and gooseneck trailers, and its usable deck width comfortably fits skid steers, mini excavators, and other pieces of large equipment.

  • Overall Width - 102"

  • Overall Length - 32'

  • Payload Capacity - 12,220 lbs.

  • Ramp Length - Approx. 4'

  • Tongue Length - 96"

  • Deck Height - 35"

  • Loading Angle - 14°

  • Overall Deck Length - 25'-4"

  • Dovetail Length - 60"

  • Wheel Size - 16"

  • Tires - ST235/80R16G - 14 ply

  • Axle 7K Fixed 7K Fixed

  • Suspension - Rubber Torsion

  • Brakes - Electric Self-Adjusting

  • Coupler - 2-5/16"

  • Coupler Position - Adjustable

  • Jack Style - Dual 12K Jacks

8.5x26+4 Timpte Deckover/Gooseneck 1626 GNDO
Price: $20,200 On Sale! $17,880
Silver - Deckover/Gooseneck
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 003059
VIN: 1TDU33424TB003059
Condition: New
Year: 2026
Manufacturer: Timpte
Model: 1626 GNDO
Length: 26'
Width: 8.5'
Height:
GVWR (lbs): 16,000
Weight (lbs): 3,960
Payload (lbs): 12,040
Features: Maxx / Mega Ramps

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