X

7'x14' Top Hat Trailers Utility RAX12X83-7E-R

2025 Top Hat 7x14 Utility Landscape Utility Trailer

* Coupler: 2" Forged A-Frame
* Jack: 2000# Set Back
* Fenders: 9x72 Rolled Straight
* Floor: 2" Treated Pine
* Brake: Electric 2 Wheel
* Break Away Unit w/Charger
* Stake Pockets
* 48" Tall Upright Tailgate
* Fender Brace/Steps
* Spare Rack
* **24" Sides w/Expanded Metal**
* LED Lights

Frame Structure

* Frame: 3x2x3/16
* Toprail: 3x2x3/16
* Crossmembers: 3x2x3/16
* Tongue: 4" Channel Wrap
* Uprights: 2x2x3/16
7'x14' Top Hat Trailers Utility RAX12X83-7E-R
Our Price! $4,550
Black - Utility
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 252365
VIN: 4R7BU1425SN252365
Condition: New
Year: 2025
Manufacturer: Top Hat Trailers
Model: RAX12X83-7E-R
Length: 14'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 1,806
Payload (lbs): 5,194
Features:

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