Showing posts with label Blogging. Show all posts
Showing posts with label Blogging. Show all posts

Tuesday, October 4, 2011

How To Transform a Blogger label into a page ?

Today I was making another page to my blog and wanted to connect it with label, but I did not get easy then i searched it and I found solution.
As always, make sure to back-up your template before making any changes to it. After that check the box ‘Expand Widget Templates’ to begin editing the full HTML template. Search for the following line that marks the beginning of the ‘Pages’ widget: 
 
<b:widget id='PageList1' locked='false' title='Pages' type='PageList'> 
 
You can insert your own links after the main code loop closes, that is after the line </b:loop>. For example, to add a label page here you need the following code:

<b:if cond='data:blog.pageTitle == &quot;Fors: Book&quot;'>  
<li class='selected'><a href='http://tech-trickss.blogspot.com/search/label/Downloads?max-results=5' title='Downloads Free EBook'>Downloads</a></li>  
<b:else/>  
<li><a href='http://tech-trickss.blogspot.com/search/label/Downloads?max-results=5' title='Downloads Free EBook'>Downloads</a></li>  
</b:if>

Naturally, the italicized text should be replaced with your own blog name and labels. And the fragment ?max-results=5 is optional;  It just forces Blogger to display only 5 articles for the label, making it consistent with the rest of my blog. You can change the number to anything you like or need.

Now Enjoy Blogging :-)

Wednesday, August 17, 2011

How to Make an eBook of a Blog and Keep it handy ?


Blogs are the most popular types of websites, almost everyone has heard of it, you must be a fan of any blog, you must be following many of them. But browsing a blog requires Internet connection.
You can save all the content of a blog into an eBook and carry it with you in your Laptop or mobile phones (You would require a PDF Reader Installed on your Computer) to read them anywhere without requiring internet connection. Here is how to do it.
There is a service called Book Smith with which you can convert a blog into an ebook.
It gives you few options at the time of converting the blog, like, how many posts you want to convert into an eBook, weather you want to publish images or not. or you want to publish dates with the posts or not.

Let me convert a blog into a book to show you the process.

Just go to Book Smith and type in the blog address and number of posts you want to convert into an eBook.

On the next page, you can uncheck the posts manually which you don’t want to convert into an eBook. 



In step three, you can select the convert for your eBook, the Title, subtitle etc. 
After selecting everything as per your choice, you can click on Create my book.

This process will take some time depending on the volume of the blog posts you have selected to convert. This process basically downloads all the content of the blog and make it a book. It also depends on the internet connection, so be patience and do not close the window.

You copy is ready to be downloaded.
You can even order a print copy of it in any quantity you want.

Thursday, August 4, 2011

How to add separate Description,Keywords,meta tags for each page in Blogger ?

It is possible to add unique meta tag(description and keywords) for each post separately. It means that the post will get a unique description and keyword and a better seo ranking.

First goto Edit Template section :
In Edit Template section find <b:include data='blog' name='all-head-content'/> 
 and add the following code just after <b:include data='blog' name='all-head-content'/> by editing: 

<b:if cond='data:blog.url == &quot;Url of post&quot;'>
<meta content='Enter keywords separated by comma' name='keywords'/> 
<meta content='Description of post' name='description'/> 
</b:if>



Don't forget to put url of your post, keywords and description.
Now for next post similarly add as above after the above so it will look like this:

<b:if cond='data:blog.url == &quot;Url of post&quot;'>
<meta content='Enter keywords separated by comma' name='keywords'/> 
<meta content='Description of post' name='description'/> 
</b:if> 

<b:if cond='data:blog.url == &quot;Url of second post&quot;'>
<meta content='Enter keywords separated by comma' name='keywords'/> 
<meta content='Description of post' name='description'/> 
</b:if>
 

 

Thursday, July 28, 2011

How to Disable Right click in Blogger / Blogspot ?

To setup this tool in your blog Copy the Following code and paste it to your blog by adding a new page element.

Step 1 : Go to Dashboard > Layout > Add Gadget > HTML / JavaScript
Step 2 : Copy the following code and paste it there .



<script language="JavaScript">
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Right Click Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>



Step 3 : Save the html/javascript and view you blog. 
When you will try to do right click, a message will tell you that “Function disabled” , and if you want to change this word” Right Click Disabled!" Then simply find it in code and replace it.

How to do Post Via Email In Own Blog

The Mail-to-Blogger feature turns any email account into a blog-posting application. In Settings | Email you can create a Mail-to-Blogger address which you will use to send posts via email to your blog:
The format of the email address is username.secretword@blogger.com. Note that this email address must be kept secret. Otherwise, anyone who gets it will be able to post as you.
Once you have saved your Settings, you can send email to your blog. The subjects of your email letters will be the titles of your posts, and the body of the emails will be the posts themselves. To include an image in your post, you can attach an image to you your email.

How To Delete Own Post From Blog

To delete a specific post, first go to your blog via the Dashboard, then locate the post you'd like deleted, and click the Delete link all the way to the right:





Simply delete the post which you want to delete.

CREATE A FAVICON ICON FOR YOUR BLOGGER BLOG

Favicon icon for blogger blog


You can go through the below simple steps to make your own favicon icon for your blog.
  • Prepare an image
The first step you have to make is creating a image.You can use software’s such as photoshop for the creation of a image for your blog.If not you can visit any of the logo creator sites for creating a logo image.
  • Create icon
Once you are ready with your image,it has to convert into icon with a size of 16×16.You can do it by uploading your image to any of the online icon converter sites.
  • Upload the icon
Now you have to make the icon available online.You can upload the icon in to any of image uploading sites.Get the direct URL to that image.
  • Adding to Blog
Now you can go to you blog and proceed to design->Edit html
Now you can add the below code into your head section.
<link href=’Your icon URL here‘ rel=’shortcut icon’ type=’image/vnd.microsoft.icon’/>
Don’t forget to change Your icon URL here with your exact URL of icon.
Now save the template and visit your blog to see your new favicon.

Submit Your Blogs To Search Engines


List of Search Engines


You may submit your site URL to these search engines for Free. If you lack the time, submit your site to the top few leading search engines.


http://www.google.com/addurl/. 
http://gigablast.com/addurl
 http://www.bing.com/webmaster/SubmitSitePage.aspx.
http://www.walhello.com/addlinkgl.html
http://www.infotiger.com/addurl.html
http://www.towersearch.com/addurl.php.
http://dinosearch.com/dinosearch/addurl.asp
http://www.websquash.com/cgi-bin/search/search.pl?Mode=AnonAdd

http://www.alexa.com/help/webmasters#crawl_site. 
http://www.baidu.com/search/url_submit.html.
 http://www.exactseek.com/add.html. 
http://searchsight.com/submit.htm.
http://www.scrubtheweb.com/addurl.html. 
http://www.entireweb.com/free_submission/.
http://www.searchking.com/add_new.htm. 
http://www.whatuseek.com/addurl-secondary.shtml. 
http://www.anoox.com/add_for_indexing_free.jsp.
http://www.mozdex.com/support/addurl.html.
http://submit2.jayde.com/.
http://www.the-search-site.com/add_url_form.asp.
http://unasked.com/webmasters.
http://search.evisum.com/addsite.htm.
http://www.searchtheweb.com/suggest/.
http://www.bestyellow.com/addurl.html. 
http://www.beamed.com/search/AddURL.html.


Website Submission Services




There are many sites on the internet offering free website submission services to search engines. The list of search engines are by and large the same. For a fee, some of them offer to send your URL to more than a hundred search engines. Is it necessary to have your webpage listed in all the smaller search engines? We think that Google, Yahoo! and MSN have cornered such a large share of the market that it is sufficient just to have your website listed there.

http://www.evrsoft.com/fastsubmit/.
http://www.submitexpress.com/.
http://www.addme.com/.
http://www.ineedhits.com/free-tools/submit-free.aspx.
http://www.submitshop.com/freesubmit/freesubmit.html.
http://www.searchengineoptimising.com/free-search-engine-submission.
http://www.addpro.com/submit30.htm.
http://www.pageranklist.net/search_engine_add_url.php.
http://freewebsubmission.com/.
http://addurl.amfibi.com/.
http://www.burf.org.uk/submit.php.
http://submitforce.jerkasmarknad.com/.
http://www.localsubmit.com/free.asp.
http://www.srsubmit.info/.