X

7'x20' Big Tex Trailers Utility 10TV-20

2026 Big Tex 7x20 Vanguard Landscape/Utility Trailer 

10TV Tandem Axle Vanguard Trailer

The 10TV Pro Series Tandem Axle Vanguard Trailer from Big Tex Trailers has a generous width and higher v-crimped steel sides to protect your cargo while hauling. This rugged trailer is perfect for heavy lawn and garden use, as well as heavy duty landscaping.

#### SPECS

AXLE: (2) 5,200# EZ Lube w/ Elec. Brakes

JACK: 8,000# Drop Leg, Set-Back Jack (Bolted On)

TIRE: ST225/75R-15 Load Range D

FLOOR: 2" Treated Pine or Douglas Fir*

FRAME: 5" x 3" x 1/4" Angle

SIDES: 3" x 2" x 3/16" Angle

WHEEL: 15" x 6"; Black Mod, 6 Bolt Pattern

FINISH: Superior Quality Finish is Applied for a Highly Decorative and Protective Finish

LIGHTS: L.E.D. D.O.T.

TONGUE: 5" Channel Fold Back/Wrap Tongue

COUPLER: Adjustable Forged, 2-5/16"

FENDERS: 9" x 72" 16 Ga. Tear Drop w/Back

G.V.W.R.: 9,990#

TOP RAIL: 2-7/8" Pipe Top Rail

ELEC. PLUG: 7-Way RV

HITCH TYPE: Bumper Pull

SUSPENSION: Multi-Leaf Spring w/ Equalizer

CROSSMEMBERS: 3" x 2" x 3/16" Angle

FINISH (Prep): Steel is Cleaned to Ensure a Professional, Smooth Finish

SAFETY CHAINS: 1/4" Grd. 70 w/ Safety Latch Hook

G.A.W.R. (Ea. Axle): 5,080#

RAMP 4' Ramp Gate
7'x20' Big Tex Trailers Utility 10TV-20
Price: $8,700 On Sale! $8,399
Black - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 419991
VIN: 16V1W2420T2419991
Condition: New
Year: 2026
Manufacturer: Big Tex Trailers
Model: 10TV-20
Length: 20'
Width: 7'
Height:
GVWR (lbs): 9,990
Weight (lbs): 2,636
Payload (lbs): 7,354
Features: Ramp Gate, Solid Sides, Spare Mount

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