keithcurtis said: Vertical is not the issue. OP wants them as a drop down, which as Oosh says is a problem. Yup, understood. Oosh had stated it could 'probably' be done, and I intended to say that I had some code I was willing to share to do just that. :) The joys of responding on mobile. Tatarius, here's what my layout looks like with a token selected. I've moved the toolbar, token actions, and radial menu over to the left so they stay out of the way. Since a dropdown isn't a possibility with CSS, perhaps moving it out of the way would work for you also. Here's the code that I use for the Token Actions to move them to the left side of the screen and position them vertically: #secondary-toolbar{ position: fixed; top: 255px !important; left: 4px !important; width: 32px; box-shadow: none; border-radius: 3px; background-color: rgba(0, 0, 0, 0.44) !important; } #secondary-toolbar .tokenactions .btn, .btn.btn-default { display: flex; align-items: center; padding: 0px 3px 0px 3px; margin-top: 2px; margin-bottom: 0px; margin-right: 1px; } #secondary-toolbar li { border-right: 0px; }