X

7'x16' Stealth Trailers Enclosed Cargo 7x16-TA 90"

2025 Stealth 7x16 Enclosed Trailer

Standard Feature

2×5 Aluminum Tube Main Rails on 7w up to 16ft long

Seamless Aluminum Flat Top Roof

 Slant Wedge on 7w Models

54″ Tongue Length on 7w 36″

Triple Tube A-frame 3/8″ Drymax Walls

2,000# Drop Leg Jack Plastic Corner Blocks on Top Trim

Aluminum Star Radial Tires & Wheels

#5200 Spring Tandem Axle Upgrade (From #3500 Spring Tandem Axles) And 16" On Center Floor Crossmembers, 2-5 16" 14,000# Coupler, And 11,700# Safety Chains

18" Extra Height  (90" Total Ireior Height)

Side Door Upgraded To Max Height Of 78"

ST225/75R-15 LRD Tires

Wide Track Axle/s on 7wide – No interior wheel wells 

Electric Brakes w/7-way Plug on TA & 7w SA (4) 5000# 

2-5/16 Coupler on TA & 7w SA Models LED Marker Lights

7-Way Electrical Plug on TA & SAE DOT/CSA Approved Safety Equipment

Black - Out Package Special

Poly Composite .080 Sidewall Metal Upgrade (From .030 Metal)

Frame for Roof Vent Limited 3 Year Structural Warranty

7'x16' Stealth Trailers Enclosed Cargo 7x16-TA 90"
Price: $13,400 On Sale! $11,499
Black - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 103700
VIN: 52LBE1623SE103700
Condition: New
Year: 2025
Manufacturer: Stealth Trailers
Model: 7x16-TA
Length: 16'
Width: 7'
Height: 90"
GVWR (lbs): 9,990
Weight (lbs): 2,140
Payload (lbs): 7,850
Features: Barlock on Door, BLACK OUT PKG, Ramp Gate, Rock Shield, Screwless Exterior, Side Door

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