X

7'x14' High Country Utility 7x14

7'x14' High Country 7x14 Utility



Standard Trailer Features and Upgrades

  • Subframe: 2"x4"

  • Floor Crossmembers: 24" O/C

  • Deck Width: 80"

  • Deck Length: 168"

  • 2000# Center Jack

  • Axle: 3500# Leaf Spring Idler w/ 4" Drop

  • GVWR: 2990# 15"

  • 205 Silver Mods 205/75R15

  • Ramp: Bi-Fold Aluminum Ramp

  • Power Cord: 4-Way Flat Exterior

  • LED Lighting

  • Decking: 2"x8" Heat Treated Planking

  • 4-Piece Extruded Hinge System

  • 2"x2" Rail Kit 2"

  • A Frame Coupler

  • Aluminum Fenders

  • Safety Chains: 5000#

  • High Country Decals

  • Limited 4 Year Warranty

7'x14' High Country Utility 7x14
Price: $3,620 On Sale! $3,499
Silver - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 031168
VIN: 5WFBU1417SS031168
Condition: New
Year: 2025
Manufacturer: High Country
Model: 7x14
Length: 14'
Width: 7'
Height:
GVWR (lbs): 2,990
Weight (lbs): 1,011
Payload (lbs): 1,979
Features: Bi-Fold Gate, Ramp Gate

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