Visual Customization
( please note that this option is available only for specific license types )
This allows you to customize/brand the appearance of the signing application in 2 ways :
-
upload your organization logo to be displayed instead of the default Bulksign logo.
-
with custom CSS the visual appearance of different UI elements can be customized.
The visual customization of the web signing application is done with CSS. Here is a easy guide that shows which elements can be customized :
- customize the top bar :
.navbar-fixed-top
{
background-color: red !important;
}
- "Next" button :
#buttonNext
{
background-color: green !important;
color: yellow !important;
}
- "Reject" button :
#buttonReject
{
background-color: white !important;
color: red !important;
}
- "Finish" button :
#buttonFinish
{
background-color: fuchsia !important;
}
- page border
.pageImage
{
border: 1px solid red !important;
}
- pager
.pager
{
background-color:red !important;
}