All of this is pretty much for the navigation table. You can fix some of it without changing any code, but not all of it. You'd have to disable the navigation (using $noNav=1) and then provide some modified code to recreate the navigation area.
What you can fix right now is the << and >> for previous and next month. Change those from the Setup Manager - Navigation. They should be << and >>
For the table itself, first, put $noNav=1; somewhere before the require that shows your calendar. Then right below the require, paste the following
PHP Code:
<table class="navTable" cellspacing="0" cellpadding="0">
<tr>
<td align="left" width="33%"><a href="<?php echo "$thisFile?".$returnString.($returnString==""?"":"&")."mo=$mb&yr=$yb$anchorTag".$returnString2; ?>" class="navTableText"><?php echo $navLeft; ?></a></td>
<td align="center" width="34%"><a href="<?php echo "$thisFile?".$returnString.($returnString==""?"":"&")."mo=$cmo&yr=$cyr$anchorTag".$returnString2; ?>" class="navTableText"><?php echo $navMiddle ?></a></td>
<td align="right" width="33%"><a href="<?php echo "$thisFile?".$returnString.($returnString==""?"":"&")."mo=$mf&yr=$yf$anchorTag".$returnString2; ?>" class="navTableText"><?php echo $navRight; ?></a></td>
</tr>
</table>
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
Last edited by ve9gra; 02-16-2008 at 08:01 AM.
|