X

8.5'x20' Big Tex Trailers Deckover/Equipment 14OE-20

2026 Big Tex 8.5x20 Deckover Equipment Trailer 

Axles 2 - 7,000# Premium, with Quick-Lubricating Hubs
Brakes Forward Self-Adjusting Electric Brakes on Both Axles
Suspension Multi-Leaf Slipper Spring w/ Equalizer
Coupler Adjustable 2-5/16" Coupler
Safety Chains 1/4” Grd. 70 w/Safety Latch Hook (2 each)
Jack 7,000# Top Wind Drop Leg JackFrame6" Channel
Cross-Members 3” x 2” Channel
Floor Treated Pine Floor
Ramps 8' Slide In Ramps
Stake Pockets Stake Pockets Along Both Sides, 24" O.C. (Quantity Varies by Length)
Trailer Plug 7-Way RV
Lights Recessed, Grommet-Mounted L.E.D. Lighting
Wiring Sealed, Modular Cold-Weather Wiring Harness
Tires ST235/80 R-16 Load Range E Radial Tires
Bolt Pattern 6 Bolt
Spare Mount Front Spare Tire Mount
Spare Tire Not Included
Paint Type Professional Finish w/ Primer Standard
Paint Color Black
Rubrail Rub Rail Along Both Sides
Break-Away Kit Complete Breakaway System w/ Zip Breakaway Cable
8.5'x20' Big Tex Trailers Deckover/Equipment 14OE-20
Price: $7,670 On Sale! $7,499
Black - Deckover/Equipment
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 424701
VIN: 16V1F2623T2424701
Condition: New
Year: 2026
Manufacturer: Big Tex Trailers
Model: 14OE-20
Length: 20'
Width: 8.5'
Height:
GVWR (lbs): 14,000
Weight (lbs): 3,360
Payload (lbs): 10,640
Features: Slide Out Ramps, 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'; }); });