X

7.5'x20' CornPro Livestock SG-20 7H

2025 Corn Pro 7.5x20 Livestock Trailer 

###### UPGRADES INCLUDED:

* Back up Lights
* Rubber Bumper
* Spare Tire
* Color: Pewter

###### STANDARD FEATURES:

* 3" x 5" X 1/4" structural angle main frame
* 3" x 2" X 3/16" cross members
* 3" x 4" tube at rear corners
* 6" roof radius
* Dexter Torflex torsion axles
* Electric all-axle brakes
* Aluminum tread plate rock guards, front and fenders
* 12-volt breakaway with battery
* Rubber-mounted LED lighting
* Dome light
* 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.5'x20' CornPro Livestock SG-20 7H
Price: $17,600 On Sale! $16,999
Pewter - Livestock
Location
Watertown
N2047 Sawmill Rd
Watertown, WI 53098
(920) 390-2258
Get a Quote
Specs
Stock Number: 87580
VIN: 4MJSG2027SE087580
Condition: New
Year: 2025
Manufacturer: CornPro
Model: SG-20 7H
Length: 20'
Width: 7.5'
Height:
GVWR (lbs): 14,000
Weight (lbs): 4,950
Payload (lbs): 9,050
Features:

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