T-minus

this may sound a bit cheezy but I’d like to have a customized ‘countdown’ desktop wallpaper, counting down the days and hours until my next race. Can any one of you ST’ers help me out on this one?

type this into google and take your pick!

download count down desktop clock

I created a basic HTML page, which I have used as an I-Frame on my desktop for CdA, borrowing their clock script. Code:

<head>
    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
    <title>Ford Ironman CDA Countdown</title>

    <style type="text/css" media="screen"><!--

#layer1 { background-image: url(“http://www.ironmancenter.com/images_main/hrm.gif”); visibility: visible; position: absolute; z-index: 10; top: 1px; left: 2px; width: 160px; height: 164px }
#layer2 { visibility: visible; position: absolute; z-index: 20; top: 57px; left: 24px; width: 116px; height: 59px }

<body style="margin-center: 0px; margin-top: 0px; background-color: black;">
    <div id="layer1" class="clock">
        <div id="layer2">
            <div style="text-align: center;">
                <script type="text/javascript" src="http://www.ironmancda.com/clock.js"></script>
                <ilayer id="countdownnsmain" width="&{countdownwidth};" height="&{countdownheight};" bgColor="&{countdownbgcolor};" visibility="hide">
                    <layer id="countdownnssub" width="&{countdownwidth};" height="&{countdownheight};" left="0" top="0"></layer>
                </ilayer>

            </div>
        </div>
    </div>
</body>