X

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

2026 Big Tex 7x20 Car Hauler/ Racing Trailer 

10CH-20

Standard Feature 

Axles, 2 - 5,200# Premium, Cambered Axles with Quick-Lubricating Hubs,  

Brakes, Forward Self-Adjusting Electric Brakes,  

Suspension, Multi-Leaf Spring w/ Equalizer,  

Coupler, Adjustable 2-5/16” Demco EZ Latch 

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

Jack, 8,000# Top Wind, Set-Back Jack,  

Frame, 6” x 3.5” 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, 

Ramps, Side Slide In Ramps, 

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, ST225/75R-15 Load Range D,  

Bolt Pattern, 6 Bolt,  

Spare Mount, Side Spare Tire Mount,  

Paint Type, Professional Finish w/ Primer Standard,  

Paint Color, Black, 

 

7'x20' Big Tex Trailers Car Racing 10CH-20
Price: $5,990 On Sale! $5,699
Black - Car Racing/Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 424976
VIN: 16V1C2426T2424976
Condition: New
Year: 2026
Manufacturer: Big Tex Trailers
Model: 10CH-20
Length: 20'
Width: 7'
Height:
GVWR (lbs): 9,990
Weight (lbs): 2,320
Payload (lbs): 7,670
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'; }); });