How to remove line script when Appointment Widgets sessions are sold out and how to change hoover color and green check symbol?

  • asserbiz
    Asked on January 20, 2019 at 6:37 AM

    Hi, 

    I would like to ask for your help. 

    The appointment slot widget is a plus, but there are some personalized features that we need for a customer:

     - When sessions are sold out how can we remove the line script, just to see the Sold Out word?

     - How can we change the hoover color when we choose an item?

     - How can we change the green check symbol for other, or change the color (if possible)


    Best Regards

  • Victoria_K
    Replied on January 20, 2019 at 7:18 AM

    Hello, You can adjust Appointment Slots styling with custom CSS, for example:

    - When sessions are sold out how can we remove the line script, just to see the Sold Out word?

    You can change text to 'Sold Out' here:

    How to remove line script when Appointment Widgets sessions are sold out and how to change hoover color and green check symbol? Image 1 Screenshot 20

     - How can we change the hoover color when we choose an item?

    .checklist li.hover {

       background: red;

    }

    Instead of 'red', please add the color you need. Please inject the code according to this guide:

    How-to-Add-a-Widget-to-Your-Form

     - How can we change the green check symbol for other, or change the color (if possible)

    Check symbol is actually an image that is shown for selected items, we can not change it's color, but you can replace it with your custom checkbox mark, here is the code:

    .checklist label.checkbox .after {

      url("../img/check.png") center center no-repeat transparent;

    }

    Please enter URL of your image instead of highlighted  orange one. 

    Hope this helps! But, please get back to us if you need further assistance. 

  • asserbiz
    Replied on January 20, 2019 at 9:03 AM

    Hi Viktoria,

    Thanks for your help. I´ve didn´t wrote well. The line script that i want to remove is that one that crosses the words (see example below).

    Thanks

    1547993012line script Screenshot 10

  • Victoria_K
    Replied on January 20, 2019 at 9:49 AM

    You can remove this line using the following code:

    label.line-through {

      text-decoration: none;

    }

    How-to-Inject-CSS-Codes-to-Widgets

  • asserbiz
    Replied on January 20, 2019 at 10:46 AM

    Hi, thank you worked like a charm.