Keith Devins' php Calendar

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
bubs
Forum Newbie
Posts: 11
Joined: Wed Aug 16, 2006 12:19 pm

Keith Devins' php Calendar

Post 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 :?:
User avatar
Zoxive
Forum Regular
Posts: 974
Joined: Fri Apr 01, 2005 4:37 pm
Location: Bay City, Michigan

Post 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
Post Reply