Fit Bike Co 2026 Series One BMX Bike (LG) (20.75″ Toptube) (Black)
Original price was: $469.95.$140.98Current price is: $140.98.
Description
Fit Bike Co 2026 Series One BMX Bike Description:
A true classic that keeps getting better, the Fit Bike Co 2026 Series One BMX Bike honors its roots while stepping up with modern updates. Originally launched as Fitâs first-ever frame in 2000, the Series One remains a rider favorite thanks to its timeless design and dialed-in feel. For 2026, it features a lighter S1 frame and fork, a precision CNC machined integrated headtube, and a fully sealed front hub for smoother performance and lasting durability. Available in three top tube lengths, each with matched bar and crank sizing, the Series One is built to fit your styleâwhether youâre just starting out or keeping the tradition alive.
Find other toptube sizes and color options here:
| Toptube Size | Rider Height | Color | Link |
|---|---|---|---|
| 20.75″ | 5’6″ – 6′ | Black | Click here |
| 20.75″ | 5’6″ – 6′ | Cream | Click here |
| 20.5″ | 5’4″ – 5’8″ | Smoke Chrome | Click here |
| 20.25″ | 5’2″ – 5’6″ | Blood Red | Click here |
Specifications:
- Frame: Chromoly front triangle (20.75″ TT)
- Fork: Chromoly steerer tube, welded insert (33mm offset)
- Headset: Integrated, sealed
- Stem: Fit top load
- Bars: 2-piece (9″ rise) (29″ width)
- Grips: –
- Cranks: Tubular 3-piece chromoly (170mm length)
- Bottom Bracket: Mid, sealed
- Pedals: Fit PC
- Sprocket: Fit Key (25T)
- Chain: –
- Front Hub: Sealed bearings, female axle
- Rear Hub: Sealed cassette
- Driver: 9T
- Front Rim: Fit S1W
- Rear Rim: Fit S1W
- Front Tire: Fit OEM (20 x 2.4″)
- Rear Tire: Fit OEM (20 x 2.4″)
- Seat: Padded seat/post combo
- Seat Post: Alloy (200mm)
- Seat Clamp: –
- Brake Lever: Two-finger lever
- Brakes: U-brake with low-tension spring, linear cable
- Gyro: –
- Gyro Tabs: Drilled (Not included)
- Brake Mounts: –
- Extras: –
- Color: Black
- Weight: –
Geometry:
- Toptube Length: 20.75″
- Chainstay Length: 13.11″
- Headtube Angle: 75.5°
- Seattube Angle: 71°
- Bottom Bracket Height: 11.8″
- Standover: 8.8″
- Recommended Sizing Guide: 5’6″ – 6′
Popular Accessories:
Pro-Tec Classic Certified Helmet
View Item
Dan’s Comp Deluxe 20″ BMX Inner Tube
View Item
DK Random Wrench V3 Tool
View Item
Space Brace Dennis Enarson Knee Pads
View Item
Cult Butter PC Peg
View Item
Kryptonite Kryptoflex Keeper 512 4-Digit Combo Cable Lock
View Item
Wooder x Dan’s Comp Tire Wedgie
View Item
Cult x Vans Flangeless Grips
View Item
Dan’s Comp Laced Bolt T-Shirt
View Item
Odyssey Grandstand V2 PC Pedals(9/16″)
View Item
Colony Paterico Pivotal Seat
View Item
Higher Footwear Crypt Canvas Shoes
View Item
document.addEventListener("DOMContentLoaded", function() { // Select all elements with the class 'recommended-accessory-marketing-price' const priceElements = document.querySelectorAll('.recommended-accessory-marketing-price');
priceElements.forEach(function(priceElement) { const hasStrikethrough = priceElement.querySelector('s');
if (!hasStrikethrough) { const marketingDiv = priceElement.closest('.recommended-accessory-marketing'); const button = marketingDiv.querySelector('.recommended-accessory-marketing-button'); const productLink = marketingDiv.querySelector('a[href]');
if (button && productLink) {
button.textContent = "View Item"; button.href = productLink.href; button.removeAttribute('onclick'); button.style.backgroundColor = '#464647'; button.style.color = '#fff'; button.style.border = '1px solid #464647'; } } }); });
document.addEventListener("DOMContentLoaded", () => { const titles = document.querySelectorAll(".recommended-accessory-marketing-title"); titles.forEach(title => { if (title.textContent.length > 100) { title.textContent = title.textContent.slice(0, 100); } }); });
function cleanImageSrcSmall() { // Get all img elements on the page const smallImages = document.querySelectorAll('img');
// Loop through each img element smallImages.forEach((img) => { const src = img.getAttribute('src');
// Check if the src contains the unwanted path and remove it if (src.includes('cdn-cgi/image/f=auto,width=200/')) { const cleanedSrcSmall = src.replace('cdn-cgi/image/f=auto,width=200/', ''); img.setAttribute('src', cleanedSrcSmall); } }); }
document.addEventListener('DOMContentLoaded', cleanImageSrcSmall);
document.addEventListener("DOMContentLoaded", function () { const MOBILE_BREAKPOINT = 598;
function updateControls(carousel, currentIndex) { const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next'); const scrollContainer = carousel.querySelector('.scroll-container'); const totalItems = scrollContainer.querySelectorAll('.scroll-item').length;
prevButton.style.display = currentIndex === 0 ? 'none' : 'block'; nextButton.style.display = currentIndex === totalItems - 1 ? 'none' : 'block'; }
function scrollNext(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0;
if (scrollItem && currentIndex < scrollContainer.children.length - 1) { scrollContainer.scrollLeft += scrollItem.clientWidth; currentIndex++; } carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); } function scrollPrev(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); let currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; if (scrollItem && currentIndex > 0) { scrollContainer.scrollLeft -= scrollItem.clientWidth; currentIndex--; }
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function onScroll(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const scrollItem = scrollContainer.querySelector('.scroll-item'); if (!scrollItem) return;
const scrollLeft = scrollContainer.scrollLeft; const itemWidth = scrollItem.clientWidth; const currentIndex = Math.round(scrollLeft / itemWidth);
carousel.setAttribute('data-current-index', currentIndex); updateControls(carousel, currentIndex); }
function initializeCarousel(carousel) { const scrollContainer = carousel.querySelector('.scroll-container'); const prevButton = carousel.querySelector('.prev'); const nextButton = carousel.querySelector('.next');
prevButton.addEventListener('click', function () { scrollPrev(carousel); });
nextButton.addEventListener('click', function () { scrollNext(carousel); });
scrollContainer.addEventListener('scroll', function () { onScroll(carousel); });
carousel.setAttribute('data-current-index', 0); updateControls(carousel, 0); }
const carousels = document.querySelectorAll('._carousel'); carousels.forEach(initializeCarousel);
window.addEventListener('resize', function () { carousels.forEach(function (carousel) { const currentIndex = parseInt(carousel.getAttribute('data-current-index'), 10) || 0; updateControls(carousel, currentIndex); }); }); });
For assistance building your new bike, please check out our tech help section here for instructions and tips on how to build your bike to ensure it is safe.
Dan’s Comp recommends riding with a helmet to protect that brain. Shop our selection of freestyle helmets here.
Need help finding the right bike for you? Not sure what size would suit you best? Check out our BMX buyers guide video below!
Note: To ensure that every component on your bicycle is working properly, Dan’s Comp recommends that all bikes be assembled by a qualified mechanic. Improper assembly of your bicycle may lead to premature wear or failure of individual components such as headsets, crank assembly and wheels. Failure to do so may void the manufacturer warranty.
This product was added to our catalog on August 22, 2025














