What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

SUPER-SIMPLE - Add styling to a countdown clock

jenmc

New member
Joined
Apr 26, 2021
Messages
3
Reaction score
0
HTML Coins
0
Hi,

Hoping this is really easy to someone who isn't a total newbie to coding!

I've got the following code to add a countdown clock to my site today, but I want to add styling to it to centralise, make bold and size 16pt, but I can't work out what I need to add where - hoping someone can help ASAP?


----------------

<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">

</head>

<body>

<p id="demo"></p>



<script>


// Set the date we're counting down to
var countDownDate = new Date("Apr 27, 2021 23:59:59").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

// Get today's date and time
var now = new Date().getTime();

// Find the distance between now and the count down date
var distance = countDownDate - now;

// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);

// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";

// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "Sorry, you missed it!";
}
}, 1000);



</script>

------------


</body>



</html>
 
Sorry ignore the dashes above the </body> element - I'll remove these from the final version
 
Ideally I'd also like it to show "Hurry! This offer ends in: " before the clock so it's all on one line.
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back