|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Putting a caption on the calendar
How can I put an instructution right above the month? Such as "Click on the event to see details"
So the user knows to click on the event to read more of what is going on that day. Thank you. |
|
#2
|
|||
|
|||
|
RE: Putting a caption on the calendar
That can be added in the header file. Anything you wish to show up preceding the calendar should be in there. Anything that should come after the calendar should be in the footer.
|
|
#3
|
|||
|
|||
|
RE: Putting a caption on the calendar
Do I just put the html coding before the php coding. I guess I am not sure just how to put the html coding in the header file. Thank you.
|
|
#4
|
|||
|
|||
|
RE: Putting a caption on the calendar
One of the things I like to do is put the calendar in a table.
YOu can do something like this <html> <head> <!-- all the page header stuff here --> </head> <body> <table> <tr><td colspan=2><H1>Header stuff here</h1></td></tr> <tr><td width="10%">Navigation stuff here</td> <td width="90%"> <!-- end of ltw_header file --> And the ltw_footer does this <!-- end of calendar, close the table & page -->: </td></tr> </table></body></html> |
|
#5
|
|||
|
|||
|
RE: Putting a caption on the calendar
Yes, you can just put any html coding prior to the <?php tag
Or, do it after the tahe in an echo statement like this (how I use it) <?php echo " One of the things I like to do is put the calendar in a table. YOu can do something like this <html> <head> <!-- all the page header stuff here --> </head> <body> <table> <tr><td colspan=2><H1>Header stuff here</h1></td></tr> <tr><td width="10%">Navigation stuff here</td> <td width="90%"> "; //-- end of ltw_header file -- |
|
#6
|
|||
|
|||
|
RE: Putting a caption on the calendar
This is what I put before the <?php
<html><head></head> <body><p><h1>Please click on the event to see details</h1></p></body> </html> This is the error codes I got. Warning: Cannot modify header information - headers already sent by (output started at /home/waynesta/www/www/ltw_header.php:4) in /home/waynesta/www/www/ltw_header.php on line 7 Warning: Cannot modify header information - headers already sent by (output started at /home/waynesta/www/www/ltw_header.php:4) in /home/waynesta/www/www/ltw_header.php on line 8 |
![]() |
| Viewing: Codewalkers Forums > Projects > ltwCalendar > Putting a caption on the calendar |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|