X

7'x16' Frontier Trailers Horse

2026 Alcom Frontier 7x16 Horse Trailer 

Box Length: 15’; Box Width: 80"; Interior Height: 84"; Stall Width: 40-1/2"
Bumper Pull, V-Nose w/24” Stone Guard
One Piece, .024" Aluminum Roof w/Heavy Duty Radius Roof Extrusion
Slant Load - Step Up
2-5K Dexter Torsion Braked Axles
Silver Mod (225/75R15)
2”x8” Pressure Treated Boards
.030" Aluminum Skin; Pre-Painted Exterior Side Sheets
All Box Tube Aluminum Chassis
16" O/C I-Beam Crossmembers
Exterior LED Lighting
Heavy Duty Rear Rubber Bumper
Removable New Jail Bar Head and Shoulder Dividers w/Pads (Custom Extrusion, New Latch System)
Skinned Head Wall w/Single Air Gap (Top of Wall, Plexiglass Optional)
Skinned Rump Wall w/Single Air Gap (Top of Wall, Plexiglass Optional)
1/2" Rubber Mats
Heavy Duty Wall Liner and Rear Door Liner in Horse Area
Safety Chains Across Rear Opening
Single Rear Barn Door w/Aluminum Butt Hinges (Huck Bolts, Plexiglass Optional)
(2) Inside and (1) Outside Tie Ring Per Horse (Interior Location: Driver's Side Wall, Just Above Windows)
(1) LED Dome Light in Horse Area with Exterior Cup Switch
(1) Double Action Pop-Up Vent (Per Stall)
Front Tack Area: 32” x 72” Side Access Door w/Sliding Window, 0” Short-Wall, 1/2" Rubber Mats, LED Dome Light, Removable Saddle Tree, Bridle Hooks, Blanket Bar
Sliding Calf Door In Center Gate
Plexiglass For Air Gaps And Rear Gate
5-Year Limited Warranty

7'x16' Frontier Trailers Horse
Price: $22,250 On Sale! $18,850
White - Horse
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 151669
VIN: 5WFBL1620TW151669
Condition: New
Year: 2026
Manufacturer: Frontier Trailers
Model: 7x16
Length: 16'
Width: 7'
Height: 75"
GVWR (lbs): 9,990
Weight (lbs): 2,790
Payload (lbs): 7,200
Features: Rock Shield, Rubber Floor, 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'; }); });