X

7'x20' CornPro Livestock SB-20 7S

2025 Corn Pro 7x20 Livestock Trailer 

UPGRADES INCLUDED:

Extra Center Gate

Rubber Bumper

Spare Tire

Color: Gray

STANDARD FEATURES:

  • 3" x 5″ X 1/4" structural angle main frame

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

  • 4" channel tongue

  • 6' 6" interior height

  • 6' roof radius

  • 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

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

7'x20' CornPro Livestock SB-20 7S
Price: $14,600 On Sale! $13,999
Gray - Livestock
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 087770
VIN: 4MJSB2023SE087770
Condition: New
Year: 2025
Manufacturer: CornPro
Model: SB-20 7S
Length: 20'
Width: 7'
Height:
GVWR (lbs): 12,000
Weight (lbs): 4,350
Payload (lbs): 7,650
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'; }); });