You can easily customize the widget style to match your branding. As a Growth or Enterprise plan user, you'll get widget that is always white-labeled and includes your logo.
Even further, you can use CSS to change colors and styles of the buttons as well as to add custom texts or change label names on the widget.
Simply change color codes, fonts, and size in CSS-code below and send it to helpdesk@digifabster.com. We'll take care of all the rest.
body {
background: #fff;
}
.userAcc-button, .btn-upload, .btn {
background-color: #5299d1;
color: #fff;
border-radius: 3px;
font-size: 1.2em;
font-weight: bold;
}
.userAcc-button:hover, .btn-upload:hover, .btn:hover, .btn:active {
opacity: 0.5;
background-color: #5299d1;
}
.type_radio label:hover:before{
background-color: #5299d1;
}
.type_radio input[type="radio"]:checked + label:before{
background-color: #5299d1;
}
.btn.disabled {
background: #5299d1;
}
.order-steps li.active i {
background: #5299d1;
color: #fff;
}
.order-steps li i {
font-size: 1.2em;
font-weight: bold;
}
That simple! Enjoy your branded solution.