Backup files before modifying!!!
Open ja_pyrite/index.php and find on line 125…
[php]<!– END: HEADER –>[/php]On a new blank line immediately AFTER add…
[php]<div class=”ja-day”>
<?php
echo ” <div>”.date (‘l’).” “.date (‘d’).date (‘S’).” “.date (‘M’).” “.date (‘Y’).” </div>”;
?>
</div>[/php]Open ja_pyrite/css/template.css and at the very end add…
/*Date*/
.ja-day {
background:#FFFFFF none repeat scroll 0 0;
color:#666666;
font-family:"Segoe UI",Arial,Helvetica,sans-serif;
font-size:90%;
letter-spacing:5px;
position:absolute;
text-align:center;
text-transform:uppercase;
top:132px;
width:100%;
}
If you just want the date and not the day then add this to index.php instead of the code above…
[php]<div class=”ja-day”>
<?php
echo ” <div>”.date (‘d’).date (‘S’).” “.date (‘M’).” “.date (‘Y’).” </div>”;
?>
</div>[/php]