PDA

View Full Version : <SITE_CALENDAR>


fredxeric
10-20-2006, 07:58 PM
How do I modified the file "calendar.php" to have the date change link on the same line as all the day during a month look this img:

http://img245.imageshack.us/img245/4308/screenhunter007kd1.jpg

jdleung
10-21-2006, 03:38 AM
find the following lines at the bottom of calendar.php

$cal_hz .= "
</tr>
<tr>
<td colspan='31' class='td-calendar-navi'>
<a href='$PHP_SELF?curr_month=$prev_month&amp;curr_year=$ prev_year&amp;showimage=$prev_image_id'>&laquo;</a>
$asc_mon-$curr_year
<a href='$PHP_SELF?curr_month=$next_month&amp;curr_year=$ next_year&amp;showimage=$next_image_id'>&raquo;</a>
</td>
</tr></table>
";


remove

</tr>
<tr>

fredxeric
10-22-2006, 05:09 PM
Thanks...