stuarta
Junior Member
Posts: 3
Registered: 3/5/2007
Member Is Offline
|
| posted on 3/5/2007 at 11:27 AM |
|
|
Event colours
Firstly, apologies if this has been covered elsewhere, but I did search and couldn't find anything.
I've just installed this script, and made myself a custom calendar. I've copied the code across to my page to include the calendar and the
events.
I had problems changing the colours of the calendar text but managed to get around that by copying the style sheet directly into my page. The only
problem I have now is that I want to change the background colour, size and if possible rename 'Title/Body' text of the Events List. Also noticed
that when I insert an apostrophe into the post, it enters as an oblique.
Example here www.simpilots.co.uk/multiplayer.php
Can someone explain to me how this is possible please.
Thanks
|
|
|
stuarta
Junior Member
Posts: 3
Registered: 3/5/2007
Member Is Offline
|
| posted on 3/5/2007 at 03:26 PM |
|
|
ok tried a different way now. The code I have is as follows
<?
error_reporting (E_ALL ^ E_NOTICE);
extract($HTTP_POST_VARS);
extract($HTTP_GET_VARS);
include '/path to calendar/cl_files/calendar.php';
>?
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th align="center" class="header1" colspan="3"><div align="center">Events list</div></th>
</tr>
<tr>
<th align="center" class="header2">#</th>
<th align="center" class="header2">Event</th>
<th align="center" class="header2">Time</th>
</tr>
<tr>
<td><div align="center">$num</div></td>
<td><div align="center">$title</div></td>
<td><div align="center">$body</div></td>
</tr>
</table>
The colours are correct but the $num, $title, $body isn't pulling the data back from my calendar
|
|
|