Log in

View Full Version : Format question for Universal Countdown script



BelowZero
02-13-2014, 05:08 PM
1) Script Title: Universal Countdown script

2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex6/universalcountdown.htm

3) Describe problem: Just wondering how one would move the "days", "hours" etc. text down to be on the same plane as the countdown numbers. Could this be easily accomplished? Thanks.

Deadweight
02-13-2014, 11:35 PM
var displaystring="<span class='lcdstyle'>"+arguments[0]+" <sup>days</sup> "+arguments[1]+" <sup>hours</sup> "+arguments[2]+" <sup>minutes</sup> "+arguments[3]+" <sup>seconds</sup></span> left until launch time"
to

var displaystring="<span class='lcdstyle'>"+arguments[0]+" days "+arguments[1]+" hours "+arguments[2]+" minutes "+arguments[3]+" seconds</span> left until launch time"

BelowZero
02-19-2014, 02:01 AM
Thanks!