Content
  + LICENSE
  + INSTALLATION
  + LAYOUT
    + PHP-Fusion
    + Custom CSS
  + THANKS



/****************************************************************************
 * LICENSE
 *********/
awEventCalendar

Copyright (C) 2006-2008 Artur Wiebe
wibix@gmx.de

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.



/****************************************************************************
 * INSTALLATION
 **************/
See INSTALL for installation instructions.



/****************************************************************************
 * UPDATE
 ********/
+ Upload the latest PHP files to your web space.
+ Go to your PHP-Fusion's Admin|Infusions page. You should see that a database
update is available.
+ If so, click on "Start update...".



/****************************************************************************
 * LAYOUT
 ********/

PHP-Fusion
----------
It is common that PHP-Fusion does take care of HTML table caption so it may
results in some bigger font size than needed. You can try to add the following
CSS code into styles.css of your theme.

caption {
        font-size:10px;
}
tr.forum-caption {
	font-size:10px;
}


Custom CSS
----------
If you want to customize the calendar to your needs read below. If you feel
that the standard PHP-Fusion tables look too wide or too ugly this is because
your theme designer didn't define ALL that is needed. Let him know he misses
few things :)

You can define how your side-panel and calendar in calendar-views looks like.
If you need help to customize your layout have a look at my page
(http://wibix.de) or contact your theme designer.

There are 3 classes at the moment:
	+ TABLE:awec_calendar
		- TD:current: current day,
		- TD:empty: no event on this day,
		- TD:content: at least one event on this day,
		- TD:birthday: at least one birthday on this day,
		- TD:dayofweek: day of week in the table caption,
		- TD:weekend.
	+ TABLE:awec_list
		- TR:current: current day,
		- TR:odd,
		- TR:event.
	+ TABLE:awec_event
		- IMG:icon,
		- DIV:left,
		- DIV:right,
		- DIV:head,
		- DIV:body,
		- DIV:status.

Follows a simple example that you can paste right into your theme's styles.css.
This files is in themes/YOUR_THEME/ directory.  If you need more, consider
reading a CSS tutorial.

--begin copy--
table.awec_calendar th {		/* table head: day of the week */
	font-weight: normal;
}
table.awec_calendar td.current {	/* current day */
	border: 1px solid yellow;
}
table.awec_calendar td.content {	/* day with some events */
	background-color: red;
}
table.awec_calendar td.empty {		/* day with no events */
	background-color: gray;
}
table.awec_calendar td.weekend {	/* weekend */
	background-color: blue;
}

/* analogous for the list view except it is using rows instead of cells */
table.awec_list tr.odd {
	background-color: green;
}
table.awec_list tr.even {
	background-color: red;
}
table.awec_list tr.current {
	background-color: yellow;
}

/* boxover */
.awec_bo_head {
        background-color: #5c5b7e;
        background-color: #555;
        padding: 4px;
}

.awec_bo_body {
        background-color: #504f6d;
        background-color: #444;
        padding: 4px;
}
.awec_bo_body ul {
        margin: 0;
        padding-left: 10px;
}
--end-copy--



/****************************************************************************
 * THANKS
 ********/
BoxOver
v 2.1 17th June 2006
By Oliver Bryant with help of Matthew Tagg
http://boxover.swazz.org
