X

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

2026 Big Tex 7x20 Deckover Equipment Trailer 

14OE-20

Standard Trailer Features and Upgrades

  • 2-7000# Premium, Quick-Lubricating Axles

  • Forward Self-Adjusting Electric Breaks

  • Multi Leaf Slipper Spring w/ Equalizer

  • Adjustable 2-5/16" Coupler

  • 1/4" Grd. 70 w/Safety Latch Hook

  • 7000# Top Wind Drop Leg Jack

  • 6" Channel

  • 3"x2" Channel

  • Treated Pine Flooring

  • 8' Slide In Ramps

  • Stake Pockets Along Both Sides 24" O/C

  • 7-Way RV Plug

  • Sealed Cold-Weather Wiring Harness

  • ST235/80R16 Load Range E Tires

  • Black Paint Color

7'x20' Big Tex Trailers Deckover/Equipment 14OE-20
Price: $7,670 On Sale! $7,490
Black - Deckover/Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 424702
VIN: 16V1F2627T2424702
Condition: New
Year: 2026
Manufacturer: Big Tex Trailers
Model: 14OE-20
Length: 20'
Width: 7'
Height:
GVWR (lbs): 14,000
Weight (lbs): 3,360
Payload (lbs): 10,640
Features: 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'; }); });