X

7'x16' Frontier Trailers Livestock

2026 Alcom Frontier 7x16 Livestock Trailer 

Standard Trailer Features and Upgrades

  • Color - Charcoal

  • Box Length 16'

  • Interior Height 84"

  • 2-3500K Dexter Axles Torsion

  • ST225/75R15 Tires

  • 2-5/16" Coupler

  • V-Nose Construction

  • .040 Aluminum Exterior

  • 16" O/C I-Beam Cross Members

  • Exterior LED Light

  • Heavy Duty Rear Step Up Rubber Bumper

Horse Area

  • Stall Width 40-1/2"

  • Dividers - Removable Jail Bar Head and Shoulder Divider

  • Feed Windows - 30"x24" Radius Drop Down Feed Windows

  • Heavy Duty Wall Liner

  • Safety Chains Across Rear Opening

  • Rear Gate - Full Swing

  • Tie Rings - 2 Inside and one Out side

  • Rear Plexiglass

Front Tack Area

  • Tack Wall - Permanent Tack Area

  • 32" x 72" Side Access Door with Sliding Window

  • Floor Mats - 1/2" Rubber Mats

  • 3 Saddle Racks

  • Spare Tire

  • 6 Adjustable Bridle Hooks

7'x16' Frontier Trailers Livestock
Price: $26,450 On Sale! $23,999
Charcoal - Livestock
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 151667
VIN: 5WFBH1523TW151667
Condition: New
Year: 2026
Manufacturer: Frontier Trailers
Model: Colt 3H
Length: 16'
Width: 7'
Height:
GVWR (lbs): 7,000
Weight (lbs): 3,122
Payload (lbs): 3,878
Features: Side Door

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