Calendar icons not only for your blog
Submitted by sign on Fri, 10/26/2007 - 11:00.I have found a little bit of time last night to create few calendar icons.
You can now download the source file of icons for gimp (http://gimp.org).

How to implement them
HTML Code for one icon
<div class="calendar calendar-icon-10">
<div class="calendar-day">26</div>
</div>I have 12 classes, calendar-icon-X where X is the number of the month. In each calendar-icon-X is background image of the month.
Main Calendar CSS Code
.calendar {
float: left;
margin-right: 6px;
width: 42px;
height: 42px;
}CSS Code for one icon
#content .calendar-icon-10 {
background: url('calendar/10.gif');
}CSS Code for day
.calendar-day {
font-weight: bold;
font-size: 1.3em;
color: #000;
width: 42px;
text-align:center;
padding-top: 14px;
}How to use it in Drupal theme
Insert all css classes (above) to your style.css file. Open up your node.tpl.php file and add there:
<div class="calendar calendar-icon-<?php print Date("m", $node->created) ?>">
<div class="calendar-day"><?php print Date("j", $node->created) ?></div>
</div>Icons Licence
Icons are FREE! Enjoy and post some comments where you are using them if so. ;)
Suggestions and comments welcome.
| Attachment | Size |
|---|---|
| calendar-icons.tar.gz | 14.73 KB |
| calendar-icon-src.xcf | 20.63 KB |
- 8368 reads
Delicious
Technorati

Comments
Can those icons be used in
Can those icons be used in Drupal GPL licensed Themes?
Yes, you can use them
Yes, you can use them wherever you want and do whatever you want with them. ;)
can someone tell me how can
can someone tell me how can add these icons to my webpages, I am using Frontpage
Epic FAIL.
Epic FAIL.
Very nice! thanks
Very nice!
thanks
using in HTML
can i use the following css in plane HTML
Yes you can, just copy the
Yes you can,
just copy the html and css.
That will do it. :)
FAIL
Hilarious.
thanks, i was looking for this
I just wanted to say thanks, i was looking for exactly this.
icons
Very nice icons. Are they free to use?
Yes, they are!
Yes, they are!
Thanks
I have been coding my own CMS/blog/galery/news system for a few weeks now and this will make it look so much better
thanks
Post new comment