UI Customization for WebSign


Navigate to Settings / Visual Customization area. From there you can customize the UI by uploading your organization logo image and enter the CSS to customize both the dashboard and signing application.

Tip

See this section about customizing the look of the application



Customize Login/Register/ForgotPassword pages

  • you can replace the logo that shows up in these pages by overwriting "blogo.png"

  • add specific customization rules to "public.css"



Customize WebSign with JS


For WebSign JS customizations , the recommendation is to use the integration.js file (located by default in c:\Program Files\Bulksign\WebSign\scripts\integration\integration.js)

Please be aware the integration.js file is loaded and runs on ALL WebSign pages. If you want to change something only for specific pages, you should check the current URL before applying the customization :

    var url = window.location.href.toLowerCase();

    if (url.endsWith("/intro")) {
        // apply customization for introduction page
    }

    if (url.endsWith("/sign")) {
        // apply customization for sign page
    }

    if (url.endsWith("/read")) {
        // apply customization for read page
    }

Please see the following GitHub repository