X

8.5x20+4 Timpte Deckover/Gooseneck 1620GNDO

2026 Timpte 8.5x20 Gooseneck Deckover Trailer (8.5x20+4) 

Overall Width 102”

Overall Length 28’

Ramp Length Approx. 4’

Tongue Length 96”

Deck Height 35”

Loading Angle 14°

Overall Deck Length 20’

Dovetail Length 60”

Wheel Size 16”

Tires ST235/80R16G - 14 ply

Number of Lug Bolts 8 per wheel (32)

Axle 7K 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 12 per side (24 total)

Lighting LED

8.5x20+4 Timpte Deckover/Gooseneck 1620GNDO
Price: $18,800 On Sale! $17,900
Silver - Deckover/Gooseneck
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 003249
VIN: 1TDU32825TE003249
Condition: New
Year: 2026
Manufacturer: Timpte
Model: 1620GNDO
Length: 20'
Width: 8.5'
Height:
GVWR (lbs): 16,000
Weight (lbs): 3,320
Payload (lbs): 12,680
Features: Dovetail, Dual Jacks, Maxx / Mega Ramps, Spare Mount, 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'; }); });