X

7'x20' Timpte Car Racing 1020 7x20 with Ramps

2025 Timpte 7x20 Car Hauler/Racing Trailer 

Overall Width 102”

Overall Length 25’ 2”

Beavertail Length 24”

Ramp Length  6’

Tongue Length 57”

Deck Height” 25”

Loading Angle 15°

Wheel Size 15”

Tires ST225/75R15E - 10 ply

Number of Lug Bolts 6 per wheel (24)

Axle/Suspension Torsion

Brakes Electric Self-Adjusting

Coupler 2-5/16”

Coupler Position Fixed

Jack Style Side Crank

Jack Rating 3,000 lbs

Tie-Downs (4) D-Rings in Deck, (4) D-Rings in L-Track

Lighting LED

7'x20' Timpte Car Racing 1020 7x20 with Ramps
Price: $12,060 On Sale! $10,899
Silver - Car Racing/Equipment
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 02666
VIN: 1TDU22526SB002666
Condition: New
Year: 2025
Manufacturer: Timpte
Model: 1020 7x20
Length: 20'
Width: 7'
Height:
GVWR (lbs): 10,000
Weight (lbs): 2,420
Payload (lbs): 7,580
Features:

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