simple calendar for news articles / blogs

Joined
Aug 12, 2006
Messages
60
anyone know of a simple calendar that can be configured like this:

month
day
year

most blogs have something similar to this, next to the article. Similar to this website:
nataliegrant.com

thanks
-Pat
 
the source code for that site has this
Code:
<div class="month">
 Aug 
</div>

<div class="day">
 06 
</div>

<div class="year">
 2008 
</div>

and the corresponding CSS file has this
Code:
.date {

	width:35px;
	text-align:left;
}


.day {

	font-size: 25px;
	font-weight: bold;
	line-height: 25px;
	color: #AB7364;
	padding: 2px 0 2px 0;
	margin: 0;
}

.month {

	font-size: 14px;
	font-weight: ;
	letter-spacing: 2px;
	color: #333;
	border-bottom: solid 1px #999;
}

.year {

	font-weight: ;
	letter-spacing: 1px;
	color: #333;
	border-top: solid 1px #999;
}
 
Back
Top