Home › Forums › Support › How to make Woocommerce "Place Order" button sticky on bottom on mobile display This topic has 3 replies, 2 voices, and was last updated 4 years, 7 months ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts January 29, 2020 at 8:21 pm #1148837 Tri Ryuzaki Hello, is there any way to make Woocommerce “Place Order” button on checkout page sticky on bottom when scrolling on mobile display. Thanks a lot. January 30, 2020 at 2:57 am #1149053 DavidStaff Customer Support Hi there, you can try this CSS: @media (max-width: 600px) { .woocommerce #payment #place_order { position: fixed; bottom: 0; left: 0; right: 0; top: unset !important; z-index: 1000; } body.woocommerce-checkout { margin-bottom: 60px; } } January 30, 2020 at 1:50 pm #1149797 Tri Ryuzaki Thank you so much David, it works perfectly. Here is the final code to make the button width fix with the layout and center align for those who need. @media (max-width: 600px) { .woocommerce #payment #place_order { position: fixed; bottom: 0; left: 0; right: 0; top: unset !important; z-index: 1000; margin-left:auto; margin-right:auto; width:86% !important; } body.woocommerce-checkout { margin-bottom: 60px; } } January 31, 2020 at 2:28 am #1150099 DavidStaff Customer Support You’re welcome Thanks for sharing your final code 🙂 Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In