Update 2023:
Exiting news, Buttonizer has built-in transform tools
! You can now use them inside the editor đ
If you have any feedback, make sure to let us know! đĨ
âšī¸ Below you find our original response from 2020
Hi @rosefields ,
I understand it's an issue. Unfortunately the feature is not available right now.
But, something like this can actually be done with custom css:
Create a group with a single button and set it to text-and-icon menu style
Set the horizontal position to 0% from the right to make it stick to the side.
Give it the custom class name "rotate" (only premium!)
Add the following custom css:
a.rotate {
transform: rotate(-90deg) translate(100%,100%) !important;
-webkit-transform: rotate(-90deg) translate(100%,100%) !important;
-moz-transform: rotate(-90deg) translate(100%,100%) !important;
transform-origin: top;
-webkit-transform-origin: top;
-moz-transform-origin: top;
}
.rotate i {
transform: rotate(90deg) !important;
-webkit-transform: rotate(90deg) !important;
-moz-transform: rotate(90deg) !important;
}