Day Countdown: Is there a CSS to change the tile colors?

  • JAvonss11
    Asked on July 21, 2017 at 12:44 PM

    the widget is fine just the black tiles don't match with the scheme of the form i am trying to build

  • Jan
    Replied on July 21, 2017 at 3:14 PM

    It is possible to change the color scheme of the widget using custom CSS. Here's how:

    1. In the Form Builder, select the widget field.
    2. Click the "Widget Settings" button.
    3. Go to "Custom CSS" tab.
    4. Paste this CSS code:

    .digit.static {
    background-image: none !important;
    }

    .digit {
    background-color: red;
    }

    .countDiv:before, .countDiv:after {
    background-color: red;
    }

    5. Afer that, click the "Update Widget" button.

    Day Countdown: Is there a CSS to change the tile colors? Image 1 Screenshot 30

    Here's the result:

    Day Countdown: Is there a CSS to change the tile colors? Image 2 Screenshot 41

    Hope that helps. Thank you.