How do I force multiple buttons in a column to stack one on top of each other? When I widen the browser they all go inline horizontally. I want to avoid that.
Thank you.
How do I force multiple buttons in a column to stack one on top of each other? When I widen the browser they all go inline horizontally. I want to avoid that.
Thank you.
Hello @PJ1,
Thanks for writing in!
Are you using v2 button element? Please click in each button settings and add an element css in the “Customize” tab;
$el {
display: block;
max-width: 180px;
}
Feel free to change the maximum width of your button.
Thank you that worked. I need to remember to do that deep dive customization for the elements.
You’re welcome!
Thanks for letting us know that it has worked for you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.