Posts

Showing posts from April, 2009

Thinking of Changing my Template

Aspire is a great template and is a popular one at that. I have been using it for quite sometime. Thinking of changing to something else. Have no idea what I would be looking for. But The Search Begins . Please give your suggestions.

How to change Favicon in Blogger

Image
So you have got a blog. You have tweaked it’s appearance the way you wanted it. Now your blog has that stamp of your individuality all over it. Right? Think again. Your blog stands out in all respect, yet it has the most common Favicon you could lay your hands on. Let’s change this. What is Favicon? In simple words… This   And we want to change it to this (at least in my case)  :)   Now lets get down to change this. A favicon is a 16X16 px ico file. You need to have an ico file(*.ico) which will become your favicon. It can be any image file. Open any image file in IrfanView and then resize the image and save it as ico file. If you are short of ideas, you can head over to huge number of favicon collection .   Now a place to save your favicon online. You can use any online image hosting service or use the Google Sites . Create a site in google sites and then Click on Home as shown. Then you can upload your ico file to your site Once upload

Tweak Your Aspire – Numbering Comments

Your Blog is popular, unlike mine :) , and a lot of visitors leave comments on your posts, again unlike mine, do you wish you could number the comments. Numbering comments have lots of advantages. First “It looks Cool” and that’s hot. It gives you permalink to your comment, which can be given in other posts. So lets start the project…… Go to Layout => Edit HTML and then click “Expand Widget Templates”. Now search for   ]]></b:skin>   and  just above this copy and paste the following code /*Start Changes to be made to Put Comment Numbers */ .numberingcomments { /* add the CSS properties here */ text-align : right; font-size : 25px; } /*End Changes to be made to Put Comment Numbers */ This is where you can change the font size and align your Comment Number. Now we have to add some more code so the the functionality of adding comment numbers could be achieved.   Part One First search for the code

A Happy Earth Day

Image
Wishing you all A Happy Earth Day     We have got only one Home…… Save it

Tweak Your Aspire – Show your blog’s Description

This blog post is inspired by a problem faced by one of my reader. He has a blog about Philately and has text scrolling at the end of the page. What he wanted to do is to have that text scrolling at the top. The shortest and easiest possible answer to his problem was to have his message as blog’s description. But somehow Aspire does not show Description. Yipeeeee, another addition to my (gradually) increasing number of posts. Before doing anything with your template Please Backup Your Template. As I have already told you… Aspire does not show your post’s Description. So first we will tackle this problem. First search for < h1 >< a expr:href ='data:blog.homepageUrl' >< data:title /></ a ></ h1 > Just below it add < h2 >< data:description /></ h2 > So the final code should look something like < b:includable id ='main' > < h1 >< a expr:href ='data:blog.homepageUrl' ><

Add Recent Comment Widget in Blogger

Image
Ever wanted to put a widget that shows the Recent Comments being written on your blog. My blog is to put what I learn about computers and in the process share my experience with everyone. Now continuing the purpose of this blog, I will share with you the procedure on how to add “Recent Comments” widget. First go to layout => Edit HTML and search for </ head > <script type= 'text/javascript' > function commentDisplay(json) { for ( var i = 0; i &lt; numcomments; i++) { var entry = json.feed.entry[i]; var alturl; if (i == json.feed.entry.length) break ; for ( var k = 0; k &lt; entry.link.length; k++) { if (entry.link[k].rel == 'alternate' ) { alturl = entry.link[k].href; break ; } } alturl = alturl.replace( "#" , "#comment-" ); if (entry.content) { comment = entry.content.

Firefox Plugin for Rapidshare, MegaUpload etc.

Image
We all have at some point or other downloaded files from Rapidshare or Megaupload or from many other such sites. Many of them cap the download speed, Use Captcha or waiting period or a combination of these methods. This still makes their service attractive to all those who don’t want to register (pay) thus keeping them “in the running” and also lures people to register (pay) at these sites if they don’t want to encounter these “obstacles”.  To overcome these restrictions; sometimes partially; there are several programs, standalone as well as plugins. One of my favorite standalone program is CryptLoad about which I have already HERE . But today I will write about an Add-in for Firefox called SkipScreen . Though out on 2 April 2009, I was able to find it about a week later. This is what a part of their web page looks like, telling us about its feature. I, as usual, installed it and started to test it. First I downloaded a file from Rapidshare. I simply clicked on the li

Tweak Your Aspire – Add Comment Form below Post

Image
Continuing my “Tweak Aspire” series is another useful addition. Placement of “Comments Form” at the end of the post so that it becomes easier for everyone to add comments our post instead of being taken to a new page for adding comments or having a popup opening up. Let’s start the process of enabling the Comments Form below Post. But first a word of Caution. Always backup your template…. Just in case First go to Settings => Comments And Select Embed Below post. Now Save and go to Layout => Edit HTML. Here Check Expand Widgets Templates. Here find the code < b:include data ='post' name ='comments' /> And just below this line insert the following code < b:include data ='post' name ='comment-form' /> So that the code looks like < b:include data ='post' name ='comments' /> < b:include data ='post' name ='comment-form' /> Save Your t

Tweak your Aspire – Show Post Date Correctly

Image
Though I had already written on how to Show post date Correctly HERE it actually involved more code to be added. I am again writing it for the benefit of others and also to have some continuity in posts. Let’s start this small tutorial…. Go to Layout -> Edit HTML Click Expand Widget Templates. Now find the following Code var timestamp = &quot; < data:post.timestamp /> &quot; ; The code around it should look like this <script type= 'text/javascript' > var timestamp = &quot;<data:post.timestamp/>&quot;; if (timestamp != &#39;&#39;) { var timesplit = timestamp.split(&quot;,&quot;); var date_yyyy = timesplit[2]; var timesplit = timesplit[1].split(&quot; &quot;); var date_dd = timesplit[2]; var date_mmm = timesplit[1].substring(0, 3); } </script> <script type= 'text/javascript' >document.write(date_dd);</script> <div class = 'month'

Tweak Your Aspire – Show NavBar and Add Calendar

I have been receiving a lot of mails regarding tweaking of my present theme “ Aspire ”. Many of you are facing problems in deploying this theme and getting desired results. So to help all those who want to help themselves…… Go to Layout => Edit HTML Do not Check “Expand Widget Templates” Now lets start with the Navigation bar at the top. By Default Navigation Bar is Hidden in this theme. Some of you would want to see the NavBar. So to enable it, you have to change the code as follows:- 1: /* === Hide the NavBar === */ 2: .Navbar { 3: visibility : hidden; 4: display : none; 5: } 6: /* === Hide the NavBar === */ Remove */ at the end of line 1 and /* at the Start of line 6 from the code shown above. Now You have your NavBar. Now let’s Add the Calendar for blog archive. Search the code below in your Aspire theme. .up { text-transform : uppercase; } .center { text-align : center; } .l , .l

Aspire theme Problems

I have been trying to help a lot of people who have been facing problems in Aspire theme. Now all of you can Post your problems for the blogger version of the theme and I will try to sort it out. Also I will publish first part tomorrow, 13 April 2009 (8:00 PM IST), about code to add a calendar to your blog, like the one I have. None of the code for the calendar is mine, I have simply copied the code from the net and used it. Thanx to the coder. I have seen over time that people are facing problem with this theme and as it is a beautiful theme I decided to help those who want to use it. This particular post should be used to put your suggestions and your problems so that I look into those and post the solutions.

Too dormant...... for too long

I know that I have been not updating my posts for far too long period. This inactivity is due to me being very busy with my family and work. I have been getting a lot of mails regarding the theme, Aspire, I am currently using. I have tweaked it a little bit and the results have been totally satisfying. I will put majority of the code in a series in the next few days so that you could tweak this theme and get the desired results. Tll then...............