X

7'x20' CornPro Livestock SB-20 7S 84'

2025 Corn Pro 7x20 Livestock Trailer 

UPGRADES:

7' Interior Height

Sliding Center Gate

Extra Domelight

Black Up Lights

Rubber Bumper

Spare Tire

COLOR: Gray

FEATURES:

  • 3" x 5" x 1/2" structural angle main frame

  • 3" x 2" x 3/16" cross members

  • 4" channel tongue

  • 6' roof radius

  • Center gate (except 12' models)

  • Dexter Torflex torsion axles

  • Bulldog coupler and jack

  • Electric all-axle brakes

  • 12-volt breakaway with battery

  • Rubber-mounted LED lighting

  • Double tail lights

  • Treated and kiln dried pine flooring

  • Bead-blasted pre-paint

  • PPG epoxy primer and urethane paint

Curb weight is based on a standard model unit with no options.

Payload is calculated on 10% transfer weight on bumper hitch when weight is distributed evenly.

7'x20' CornPro Livestock SB-20 7S 84'
Price: $15,000 On Sale! $14,499
Gray - Livestock
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 087583
VIN: 4MJSB2024SE087583
Condition: New
Year: 2025
Manufacturer: CornPro
Model: SB-20 7S
Length: 20'
Width: 7'
Height: 84'
GVWR (lbs): 12,000
Weight (lbs): 3,990
Payload (lbs): 8,010
Features: Barlock on Door, Side Door, 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'; }); });