Search code examples
jquerycountdown

Changing the digits of a jQuery Countdown


I am using the Countdown from this site: http://www.html.it/wp-content/uploads/script/demo/a/51105/demo.html

It is a jQuery Plug-In.

How can I change the font of the digits?


Solution

  • Change the CSS property for the following selector:

    div.ClassyCountdown-days span div
    

    example:

    div.ClassyCountdown-days span div {
        font-size: 18px;
        font-family: Helvetica; /* example */
    }
    

    or simply:

    span.ClassyCountdown-value div {
        font-size: 58px;
        font-family: sans-serif;
    }