You can add a calender to your blogger blog for your users, its very easy. This tutorial will show you how you can do that. Without wasting much time, let's begin!
* Login to your blogger dashboard and click Layout
* go to the part of your blog layout you want to add the calender and click Add a Gadget
* Click Html/Javascript and paste the below script into the box
* Finally click Save and that's all.
I hope you enjoyed this tutorial, please subscribe to our newsletter to get more awesome tutorials sent to your email.
* Login to your blogger dashboard and click Layout
* go to the part of your blog layout you want to add the calender and click Add a Gadget
* Click Html/Javascript and paste the below script into the box
<style type="text/css">
.month {
background-color:black;
font:bold 12px verdana;
color:white;
}
.daysofweek {
background-color:gray;
font:bold 12px verdana;
color:white;
}
.days {
font-size: 12px;
font-family:verdana;
color:black;
background-color: lightyellow;
padding: 2px;
}
.days #today{
font-weight: bold;
color: red;
}
</style>
<script type="text/javascript" src="http://
dsai.588.googlepages.com/basiccalendar.js">
</script>
<script type="text/javascript">
var todaydate=new Date()
var curmonth=todaydate.getMonth()+1 //get current month
(1-12)
var curyear=todaydate.getFullYear() //get current year
document.write(buildCal(curmonth ,curyear, "main", "month",
"daysofweek", "days", 1));
</script>
* Finally click Save and that's all.
I hope you enjoyed this tutorial, please subscribe to our newsletter to get more awesome tutorials sent to your email.
0 Comments