I would like to move the button up above the feature list instead of below it. Is there a way to do that?
Try this in the CSS tab:
:where(%root%) .pricing-table.active {
display: flex;
flex-direction: column;
}
:where(%root%) .pricing-table-header,
:where(%root%) .pricing-table-pricing,
:where(%root%) .pricing-table-footer {
order: 0;
}
:where(%root%) .pricing-table-features {
order: 1;
}
Other than that you may build your own tables. You may also need more custom CSS if you experience any issues at other breakpoints.
1 Like
That’s genius. Thank you!!
1 Like
No problem, glad to help!