X

7'x20' Big Tex Trailers Car Racing 70CH-20

2026 Big Tex 7x20 Car Hauler/Racing Trailer 

Standard Feature 

Axles, 2 - 3,500# Premium, Cambered Axles with Quick-Lubricating Hubs,  

Brakes, Forward Self Adjusting Electric Brake on Front Axle 

Suspension, Multi-Leaf Spring w/ Equalizer,  

Tongue, 4” Channel Fold Back/Wrap Tongue,  

Coupler, 2" Forged, Adjustable 

Safety Chains, 1/4” Grd. 70 w/Safety Latch Hook (2 each),  

Jack, 2,000# Top Wind 

Frame, 5” x 3” x 5/16" Angle (1/4" on 16'),  

Cross-Members, 3” x 2” x 3/16” Angle,  

Front Stop Rail, 3/16" Fabricated Front Stop Rail,  

Floor, Treated Pine Floor 

Fenders, 9” x 72” Tear Drop (Removable),  

Ramps, 4' Slide-In Angle Ramps, 4' Slide-In Angle Ramps 

Dovetail in Existing Length (16', 18', 20' Only) 

Stake Pockets, Stake Pockets Along Both Sides (Quantity Varies by Length) 

Trailer Plug, 7-Way RV,  

Lights, L.E.D. D.O.T. Stop, Tail, Turn & Clearance,  

Wiring, Grommet-Mounted Lifetime L.E.D. Lighting,  

Tires, ST205/75 R-15 Load Range C 

Bolt Pattern, 5 on 5,  

Wheels, Black Mod,  

Paint Type, Professional Finish w/ Primer Standard,  

Paint Color, Black, 

7'x20' Big Tex Trailers Car Racing 70CH-20
Price: $5,000 On Sale! $4,899
Black - Car Racing/Equipment
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 417737
VIN: 16V1C242XS2417737
Condition: New
Year: 2026
Manufacturer: Big Tex Trailers
Model: 70CH-20
Length: 20'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 2,066
Payload (lbs): 4,934
Features: Dovetail, Slide Out 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'; }); });