Hi,
If you want to add the date under the logo, you can add the date code to the index.php file.
[PHP]
<!– LOGO –>
<div id=”logo”>
<h1>
<a href=”<?php JURI::base(true) ?>” title=”JA Wall”><span>JA</span>WALL</a>
</h1>
<p class=”clearfix”>
<?php
echo “<span class=”day”>”.JText::_(strtoupper(date (‘D’))).”</span>”;
echo “<span class=”month”>”.date (‘m’).”</span>”;
echo “<span class=”date”>”.date (‘d’).”</span>”;
echo “<span class=”year”>”.date (‘Y’).”</span>”;
?>
</p>
<p>2012 JA Hottest</p>
</div>
<!– //LOGO –>
[/PHP]
then open the template.css file and go to about line 848:
#logo p {
display: none; /* Remove this line */
}