Try this,
In the template replace the <script> part with something like this (ie add the
omitWeeks part)
Code:
<script type="text/javascript">
jQuery(document).ready(function() {
$('#countdown').countDown({
targetDate: {
'day': 00,
'month': 00,
'year': 2011,
'hour': 00,
'min': 00,
'sec': 00
},
omitWeeks: true
});
});
</script>
Then replace this part of the template:
Code:
<div class="dash first weeks_dash">
<span class="dash_title">Weeks</span>
<div class="digit">0</div>
<div class="digit">0</div>
</div>
<div class="dash days_dash">
<span class="dash_title">Days</span>
<div class="digit">0</div>
<div class="digit">0</div>
</div>
With:
Code:
<div class="dash first days_dash">
<span class="dash_title">Days</span>
<div class="digit">0</div>
<div class="digit">0</div>
</div>
And save.
You might need to then play about with the css file to fix
.first as it probably won't be aligned properly, this will differ depending on the block width you are using but try changing the margin-left value.
Code:
.first {
border-left: 0 none;
margin-left: 17px;
padding-left: 0;
Hope that makes sense

:erm: