keithcurtis said: Another way to reduce the macro bar requirements is to right click on the button and change the name. A one character emoji can do a lot of work. Also, Chat Menus can greatly increase the efficiency. Here's a recent iteration of mine: Thanks, Keith! I've been using these tips for a while and it's very helpful. The newer stylus for the compact bar is a bit nicer, too. But my poorly-worded issue is that I'm trying to get rid of the vertical scroll on the quick bar. Maybe it's always been there and I've just become aware of it, but I don't love the way it works. For me, at least, there's a ton of blank space to scroll before getting to the "next line" of buttons, so I really just would prefer to have it all on one line even if I have to scroll way to the right. EDIT: Sorted this out. I had another stylus thing that was causing this: /* ==UserStyle== @name Roll20, Edit Macro, full size dialog @namespace USO Archive @author xBladeRunner @description `Modifies: Edit Macro dialog. This makes the dialog large enough to show "Visibility to Players" field.` @version 20191114.5.46 @license CC-BY-SA-4.0 @preprocessor uso ==/UserStyle== */ @-moz-document url("<a href="https://app.roll20.net/editor/" rel="nofollow">https://app.roll20.net/editor/</a>") { /* Roll20, Edit Macro, full size dialog Modifies: Edit Macro dialog This makes the dialog large enough to show "Visibility to Players" field */ div[data-macroid] { height: 400px !important; } div[data-macroid] textarea.macro { height: 75px; } } By changing this to 25px, I eliminated my problem: div[data-macroid] { height: 400px !important; Thanks all, and my apologies for not thoroughly troubleshooting my own mess.