Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Is there a way to get the macro bar to wrap?

Is there a way to get the macro bar to wrap? I have 32 macro buttons and having to scroll to see the ones off the right side reduces some of the GM-time-saving point of macros. (These are macros I don't want on the token-select macro bar.) And it's odd that the token macro bar wraps to support lots of buttons, but the bottom macro bar doesn't. :-/
1535908005

Edited 1535909604
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
To do this you need to install the Stylus browser extension (Not Stylish, which has security problems). If you are unaware, it is an extension that provides extra CSS interpretation for specific web pages, changing the display rules. Use this CSS code: #macrobar_macros {   white-space: normal; } #macrobar {   height: auto; } That will not only cause the bar to wrap, it will tighten up the bar by removing extra white space. If you only want the wrapping part, delete the first three lines. Finally another way to reduce space taken by the macro bar, look at this Stupid Trick:  Use Emojis in Macro Buttons
Finally got a chance to try this out -- it works great! Thanks so much!