Quote:
Originally Posted by Mum
Just wondering if this is possible? I only want it to say 45 days... not hours, mins, seconds... etc.
|
Yes you can change the the display of the countdown by the countdown.js file.
Code:
CountActive = true;
LeadingZero = true;
DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds.";
You just change the DisplayFormat to what you want it to be. Like if you only wanted days you can do something like this
Code:
CountActive = true;
LeadingZero = true;
DisplayFormat = "%%D%% Day(s)";
%%D%% = Days
%%H%% = Hours
%%M%% = Minutes
%%S%% = Seconds