X

7'x16' High Country Dump 4'

2025 Alcom High Country 7x16 Dump Trailer with 4' Sides

OVERVIEW

When you need stronger performance, this dump trailer delivers. Canvas tarp, front hoist and tall dump body.

#### FEATURES

All-Aluminum Construction
16" O/C Floor Crossmembers
2"x8" Subframe Tubing
(2) 15000# Safety Chains
Dexter Leaf Spring Axles
Heavy Duty Diamond Plate Fenders w/ Corner Steps
8000# Pedestal Jack
Extruded Aluminum Decking
48" Tall Dump Body
6" Filler Board Slot
Rear Swing Open Bar Doors
DP Tongue Mount Storage Box (Hydraulic Storage)
12V Hydraulic Pump
Front Hoist System
Canvas Tarp System
Recessed LED Marker Lights
Ramp Kit
2 5/16" Adjustable Coupler
Bolt on Spare Tire Carrier- Tongue Mounted

#### SPECS

Model Number HODP7x16

Deck WxL 84" x 16'

Overall WxL 102" x 20.5'

Deck Height 28"

Hitch Height 16"

Axle(s) - Qty/Rating 2 - 6000# Braked

Wheels 16" Silver Mods

Tires 235/80R16

GVWR 12000#

Curb Weight 2649

Payload 9351

Power Connection 7-Way Round
7'x16' High Country Dump 4'
Price: $22,000 On Sale! $19,999
Silver - Dump
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: S030548
VIN: 5WFBD1624SS030548
Condition: New
Year: 2025
Manufacturer: High Country
Model:
Length: 16'
Width: 7'
Height: 4'
GVWR (lbs): 12,000
Weight (lbs): 2,840
Payload (lbs): 9,160
Features: Side Ramps, Spare Mount, Tongue Box

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