X

16GN-25+5 Big Tex Trailers Deckover/Gooseneck

2023 Big Tex 8.5x25 Gooseneck Trailer (16GN-25+5


AXLE (2) 8,000# Oil Bath w/Electric Brakes

JACK Dual 12,000# Drop Leg Side Wind (Bolted On)

NECK 12" I-Beam, 14#

TIRE ST215/75 R-17.5 Load Range H

FLOOR 2" Treated Pine or Douglas Fir*

FRAME 12" I-Beam, 14# (16# on 28 Trailer and Longer)

WHEEL 17.5" x 6.75"; Black Mod 8 Bolt

FINISH Superior Quality Finish is Applied for a Highly Decorative and Protective Finish.

LIGHTS L.E.D. D.O.T.

COUPLER 2-5/16" Ball Adjustable Pipe

DOVETAIL 5 Cleated Dovetail w/5 Double Hinged, Spring-Assisted Flip-Over Ramps

G.V.W.R. 17,500#

ELEC. PLUG 7-Way RV

HITCH TYPE Gooseneck

SIDE RAILS 5" Channel w/Rub Rail, Stake Pockets, and Chain Spools

SUSPENSION Multi-Leaf Slipper Spring w/Equalizer

CROSSMEMBERS 3" Channel

FINISH (Prep) Steel is Cleaned to Ensure a Professional Smooth Finish.

SAFETY CHAINS 3/8" Grd. 70 w/Safety Latch Hook (2 each)


16GN-25+5 Big Tex Trailers Deckover/Gooseneck
Price: $17,990 On Sale! $11,999
Black - Deckover/Gooseneck
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 212838
VIN: 16V3F382XP6212838
Condition: New
Year: 2023
Manufacturer: Big Tex Trailers
Model: 16GN-25+5
Length: 30'
Width: 8.5'
Height:
GVWR (lbs): 17,500
Weight (lbs): 5,840
Payload (lbs): 11,660
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'; }); });