X

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

2025 Big Tex 8.5x35 Deckover Gooseneck Trailer (8.5x30+5)

25GN HEAVY DUTY TANDEM DUAL GOOSENECK TRAILER The 25GN from Big Tex Trailers features 12K heavy-duty axles with Dexter Adjustable suspension. This durable gooseneck trailer comes equipped with a low-profile pierced-beam frame, LED lights, adjustable dual jacks, a chain box and a crank-style adjustable coupler. #### SPECS AXLE (2) 12,000# Dual Wheel w/ Electric Brakes (Oil Bath) JACK Dual Two Speed Landing Gear (Bolted On) NECK 12" I-Beam, 19# TIRE ST235/80 R-16 Load Range E Dual FLOOR 2" Treated Pine or Douglas Fir* FRAME 12" I-Beam, 19# WHEEL 16" x 6"; Black Dual Wheel 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 Adj. Square Crank Type DOVETAIL 5 Cleated Dovetail w/5 Double Hinged, Spring-Assisted Flip-Over Ramps G.V.W.R. 25,900# ELEC. PLUG 7-Way RV HITCH TYPE Gooseneck SIDE RAILS 8" Channel w/Rub Rail, Stake Pockets on 24" Centers, and Chain Spools SUSPENSION Heavy Duty 30,000# Adjustable 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) G.A.W.R. (Ea. Axle) 12,000# 
25GN-30+5 Big Tex Trailers Deckover/Gooseneck
Price: $21,555 On Sale! $18,999
Black - Deckover/Gooseneck
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 405259
VIN: 16V3F4329S6405259
Condition: New
Year: 2025
Manufacturer: Big Tex Trailers
Model: 25GN-30+5
Length: 35'
Width: 8.5'
Height:
GVWR (lbs): 25,900
Weight (lbs): 8,210
Payload (lbs): 17,690
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'; }); });