Fit Bike Co 2026 STR BMX Bike (MD) (20.5″ Toptube) (Army Green)
Original price was: $549.95.$164.99Current price is: $164.99.
Description
Fit Bike Co 2026 STR BMX Bike Description:
Built for modern street riding from the ground up, the Fit Bike Co 2026 STR BMX Bike delivers everything street riders demand. Its frame geometry features a snappy short rear end (12.6″ chainstays), taller standover, and steeper head angle for precision on technical lines. The 25mm offset fork with peg cuts, removable brake mounts, and cable guide give versatility without compromise. Outfitted with 2.4â F/U tires, a double-wall rear rim for low-pressure setups, four-piece bars, flangeless CrossFIT grips, and four metal pegs, the STR is ready to take on ledges, rails, and everything in between. Available in clean, no-nonsense colorways and your choice of top tube sizes, the STR stands ready when the streets call.
This model features a 20.5″ toptube and is army green in color. A 20.75″ toptube version in flat black is available here.
Specifications:
- Frame: Chromoly front triangle (20.5″ TT)
- Fork: Chromoly steerer tube, tapered legs w/ peg cut, welded insert (25mm offset)
- Headset: Integrated, sealed
- Stem: Fit top load
- Bars: 4-piece (9″ rise) (29″ width)
- Grips: Fit CrossFit (flangeless)
- Cranks: Tubular 3-piece chromoly (165mm length)
- Bottom Bracket: Mid, sealed
- Pedals: Fit PC
- Sprocket: Fit Alloy Key (25T)
- Chain: –
- Front Hub: Sealed bearings, female axle
- Rear Hub: Sealed cassette
- Driver: 9T
- Front Rim: Fit S1W
- Rear Rim: Fit, double wall
- Front Tire: Fit F/U (20 x 2.4″)
- Rear Tire: Fit F/U (20 x 2.4″)
- Seat: Fit, pivotal
- 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: Chainstay
- Extras: 100mm metal pegs (qty 4)
- Color: Army Green
- Weight: –
Geometry:
- Toptube Length: 20.5″
- Chainstay Length: 12.6″
- Headtube Angle: 75.5°
- Seattube Angle: 71°
- Bottom Bracket Height: 11.8″
- Standover: 8.8″
- Recommended Sizing Guide: 5’4″ – 5’8″
Before You Ride:
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













