Tall Order Ramp BMX Bike (Small-20″ Toptube) (Black)
Original price was: $439.99.$132.00Current price is: $132.00.
Description
Tall Order Ramp Medium BMX Bike Description:
The Tall Order Ramp Bike is a great entry-level machine in to the world of BMX park riding. Tall Order is a brand known for some high-flying park riders and this bike is designed to get you on that path. The bike comes equipped with a full gyro kit, allowing you to learn the classic brakes tricks while also learning the advanced moves like barspins and tailwhips without dealing with tangled cables. This 20″ toptube option is designed for riders in the height range of 5′ – 5’4″. For other size options, click here.
Note: The brake lever comes on the right hand side (photo shows left).
Specifications:
- Frame: 100% Hi-Ten Steel With Stamped Logo Top Tube Gusset
- Fork: 100% Hi-Ten Steel With Tapered Fork Legs
- Headset: Aheadset Unsealed
- Stem: Alloy Top Load 50mm Reach
- Bars: 2 Piece, Hi-Ten Steel (8.5â Rise) (29â Wide)
- Grips: Tall Order Catch grip, flangeless (150mm)
- Cranks: 3 Piece Tubular 4130 Chromoly (170mm Long)
- Bottom Bracket: USA Unsealed
- Pedals: Tall Order Catch Pedal, Plastic unsealed
- Sprocket: 25 Tooth Steel
- Chain: 410
- Front Hub: Alloy Loose Ball
- Rear Hub: Fully Sealed Cassette
- Driver: 9T
- Front Rim: Alloy 36 Hole Single Wall
- Rear Rim: Alloy 36 Hole Single Wall
- Front Tire: Tall Order Wallride (20 x 2.30â)( 60psi)
- Rear Tire: Tall Order Wallride (20 x 2.30â)( 60psi)
- Seat: 1 Piece Combo
- Seat Post: Alloy
- Seat Clamp: Integrated
- Brake Lever: Alloy
- Brakes: U-Brake, soft compound pads
- Gyro: Included
- Gyro Tabs: Included
- Brake Mounts: –
- Extras: –
- Color: Black
- Weight: –
Geometry:
- Toptube Length: 20″
- Chainstay Length: 13.25″
- Headtube Angle: 75°
- Seattube Angle: 71°
- Bottom Bracket Height: 11.6″
- Standover: 8.2″
- Recommended Sizing Guide: 5′ – 5’4″
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












