Viewing 1 replies (of 1 total)
  • Hello @cassie,

    For now, that feature is not builtin. Try this workaround:

    .countdown span {
        position: relative;
    }
    
    .countdown span.separator {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .day:after {
        display: block;
        width: 100%;
        position: absolute;
        bottom: -10px;
        right: 0;
        font-size: 11px;
        content:" Days";
    }
    
    .hour:after {
        display: block;
        width: 100%;
        position: absolute;
        bottom: -10px;
        right: 0;
        font-size: 11px;
        content:" Hours";
    }
    
    .minutes:after {
        display: block;
        width: 100%;
        position: absolute;
        bottom: -10px;
        right: 0;
        font-size: 11px;
        content:" Minutes";
    }
    
    .seconds:after {
        display: block;
        width: 100%;
        position: absolute;
        bottom: -10px;
        right: 0;
        font-size: 11px;
        content:" Seconds";
    }

    Anyway we will add this kind of feature (without workarounds :D) in a future version. Stay close!

Viewing 1 replies (of 1 total)
  • The topic ‘Add Date, Hours, Minutes, Seconds under counter’ is closed to new replies.