Page 1 of 1

Keith Devins' php Calendar

Posted: Mon Oct 16, 2006 12:44 pm
by bubs
I came across this calendar script and I think it would be great for my site. the only problem is I'm not sure how to style it. I know how to do most of the stuff on his page http://keithdevens.com/software/php_calendar but I'm not sure how to go about styling the calendar with css.

it says you can do it. but where? I don't know...

I know how to style the dates. but the other stuff like the background and the header are a little confusing when reading through his code and examples.

He posted on the site that he is not giving support because to many people (noobs, like me :) ) would ask him how to do certain things. so instead of shooting him an e-mail that know will go unanswered. I'll ask the community if anyone of you have any experience with this certain script or know where to put the css classes :?:

Posted: Mon Oct 16, 2006 12:55 pm
by Zoxive
CSS?

He even helps you out by putting class names, so you dont have to go by the Tags.

Code: Select all

/* Style Sheet */
.calendar{
    background-color:#FF0000;
}
.calendar .calendar-month{
    color:#000000;
    font-weight:bold;
}
It has nothing to do with the script, its just basic web design..

Just google Style Sheets or Cascading Style Sheets, im sure theres thousands of tutorials how to get you started in CSS.

-NSF