FAQ's - Countdown
Updated over a week ago

How can I customize the font size for the countdown numbers on mobile?

By default we inherit the font sizes that you have specified in your Theme settings. But if you would like to customize it for the page, then place this code into a Swiss Embed section and place on the page:
โ€‹

<style>
@media (max-width: 800px) {
countdown .days,
countdown .hours,
countdown .minutes,
countdown .seconds {
font-size: 1.8em !important;
}

countdown .days-label,
countdown .hours-label,
countdown .minutes-label,
countdown .seconds-label {
font-size: 1.8em !important;
}
}
</style>

Did this answer your question?