Countdown Timer
Translate Labels
To translate labels, add this code after the plugin code. Replace “Days“ in the content: 'Days'; with your translation. Same for hours, minutes and seconds.
<!-- Countdown Timer Plugin - Translate Labels --> <style> .c-countdown-timer__item[data-name="days"]::after { content: 'Days'; } .c-countdown-timer__item[data-name="hours"]::after { content: 'Hours'; } .c-countdown-timer__item[data-name="minutes"]::after { content: 'Minutes'; } .c-countdown-timer__item[data-name="seconds"]::after { content: 'Seconds'; } </style> <!-- end Countdown Timer Plugin - Translate Labels -->