OpenMyLink Custom CSS: how to resize bio pages buttons

You can easily resize bio pages buttons by inserting some CSS code into your bio page setting tab, inside your Custom CSS box.

The buttons created by our platform are sized to 100% or the page width. In this sample code you can change the size by decreasing the buttons to 65% of their normal size.

The margin command is there to keep the buttons centered and not left aligned.

.btn-custom {
    width: 65% !important;
    margin: 0 auto;
}
This is the final result.
Resize Bio Pages Buttons
OpenMyLink Custom CSS: how to resize bio pages buttons 3