X

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

2023 Top Hat 7x12 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
* Colors: Refer to Chart

Frame Structure

* Frame: 3x2x3/16
* Toprail: 3x2x3/16
* Crossmembers: 3x2x3/16
* Tongue: 4" Channel Wrap
* Uprights: 2x2x3/16
7'x12' Top Hat Trailers Utility RAX12X83-7E-R
Price: $4,850 On Sale! $3,899
Black - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 233511
VIN: 4R7BU1222PN233511
Condition: New
Year: 2023
Manufacturer: Top Hat Trailers
Model: RAX12X83-7E-R
Length: 12'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 1,562
Payload (lbs): 5,438
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'; }); });