X

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

2025 Top Hat 7x14 Landscape Utility Trailer

THIS TRAILER WAS LIGHTLY USED AS A DEMO UNIT. 

Standard Trailer Features and Upgrades

  • Coupler: 2" Forged A-Frame

  • Jack: 2000# Set Back

  • Fenders: 9x72 Rolled Straight

  • Floor: 2" Treated Pine

  • Brake: Electric Breaks

  • Break Away Unit w/Charger

  • Stake Pockets

  • 48" Tall Upright Tailgate

  • Fender Brace/Steps

  • Spare Rack

  • LED Lights

  • Rear Beaver Tail

Frame Structure

  • Frame: 3x2x3/16

  • Toprail: 3x2x3/16

  • Crossmembers: 3x2x3/16

  • Tongue: 4" Channel Wrap

  • Uprights: 2x2x3/16

7'x14' Top Hat Trailers Utility RAX16X83-7E-R
Price: $4,899 On Sale! $4,699
Black - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 251241
VIN: 4R7BU1424SN251241
Condition: New
Year: 2025
Manufacturer: Top Hat Trailers
Model: RAX16X83-7E-R
Length: 14'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 1,806
Payload (lbs): 5,194
Features: Dovetail, Ramp Gate, 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'; }); });