- Add 2 or more buttons into a single column row
- Give the row the class hws-buttons-sidebyside and add following css
- Buttons will be left aligned. To horizontally center them, add text-align:center; as indicated.
Left aligned
.hws-buttons-sidebyside .et_pb_button_module_wrapper {
display: inline-block !important;
margin-right: 10px !important;
}
Code language: CSS (css)
Centered
.hws-buttons-sidebyside .et_pb_button_module_wrapper {
display: inline-block !important;
margin-right: 10px !important;
}
.hws-buttons-sidebyside{
text-align:center !important;
}
Code language: CSS (css)