X

8.5x26+4 Timpte Deckover/Gooseneck 1626GNDOHD

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

1626 GN DO HD

Overall Width 102”

Overall Length 32’

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

Number of Lug Bolts 8 per wheel (32)

Axle 8K Fixed

Suspension Rubber Torsion

Brakes Electric Self-Adjusting

Coupler 2-5/16”

Coupler Position Adjustable

Jack Style  Dual 12K Jacks

Jack Rating 12,000 lbs. each

(24,000 lbs. total)

Stake Pockets 14 per side (28 total)

Lighting LED

8.5x26+4 Timpte Deckover/Gooseneck 1626GNDOHD
Price: $21,850 On Sale! $20,999
Silver - Deckover/Gooseneck
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 003334
VIN: 1TDU33422TE003334
Condition: New
Year: 2026
Manufacturer: Timpte
Model: 1626GNDOHD
Length: 26'
Width: 8.5'
Height:
GVWR (lbs): 16,000
Weight (lbs): 3,960
Payload (lbs): 12,040
Features: Dovetail, Spare Mount, Spare Tire, Stabilizer Jacks, 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'; }); });