To get locale dayname us strftime instead of date, se below
Open templates/ja_cooper/index.php. Around row 114 marked BEGIN: HEADER TOOLS you will find
echo “<span>”.date (‘l’).”</span>”;
echo ” <div>”.date (‘M’).” “.date (‘d’).date (‘S’).”</div>”;
CHANGE TO
echo “<span>”.strftime(‘%A’).”</span>”;
echo ” <div>”.date (‘Y’).”-“.date (‘m’).”-“.date (‘d’).”</div>”;
Will print out the name of the day in the locale u use. For different timestamps see http://se.php.net/manual/en/function.date.php or http://se.php.net/strftime
To Captalize the name of the day insert in template.css at
.ja-day span, .ja-day div {
text-transform:capitalize;
}
/Steve