How can I change the date reservation widget colors?

  • vtiportal
    Asked on September 3, 2017 at 7:44 PM

    See attached. How can I change the date reservation widget colors as shown?

    Jotform Thread 1239078 Screenshot
  • Ashwin JotForm Support
    Replied on September 3, 2017 at 10:48 PM

    Please inject the following custom css code in your "Date Reservation" widget to change the colors as requested:

    .ui-widget-header {

        border: 1px solid #36afc5 !important;

        background: #36afc5 !important;

    }

    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {

        color: #333333 !important;

    }

    .selected a.ui-state-default {

        color: #36afc5 !important;

    }

    .ui-widget-content {

        background: #ffffff !important;

    }

     

    The follwoing guide should help you how to inject custom css code in widgets:  https://www.jotform.com/help/428-How-to-Inject-CSS-Codes-to-Widgets 

  • vtiportal
    Replied on September 4, 2017 at 2:39 PM

    Thank you.