Showing posts with label Blogger Tricks. Show all posts
Showing posts with label Blogger Tricks. Show all posts
Tuesday, July 20, 2010
How to Post Images in Blog With High Resolution on Blogger
Hi Guys, I Have Some Tips About Images, How to Post small Images in large with high resolution not more but it's working. i tried this. if you Follow this tip your google image search will increase and visitors also.How to Post Images with High Resolution.
1.Click the upload image on blogger.
2.Browse and Select Image and click the upload image button.
3.after upload image click the compose and resize the image.
4. Now Select HTML and see the code and change the code (Ex : /s320/ - /s400/) now change the code (Ex /s800/)
and post your images with content see some. example Photos blogspot. their are using this tips for their image post for photo blog. it' cool and they are getting more visitor and increased google image by this tipBlog For Time Pass ...! | Damn Amazing Things
That's all guys, i already told you about this tip is not interesting but it's working.
give your comments for my feedback thank you for reading this post Like This Post Tweet It..!
Labels:
Blogger Tips,
Blogger Tricks
Saturday, June 26, 2010
How To Get Free High Page Rank Website Backlinks
One way links or backlinks are very important for a website or blog. If you get more one way backlinks from higher page rank to your site then more your Google page rank and more traffic you will get. But it is not easy to get free right and quality backinks from higher page rank website. You will find many sites those offer backlinks from higher page rank sites by some cash $. They use some techniques which are very easy and effective. You can also use these tricks to get free one way backlinks. Lets see what the tricks we can apply:
1. Submit your blog or site links to well known web directories. There are a lot of free web directories which you can find in search engines. For example: mybloglog.com, blogcatalog.com, dmoz.org are very familiar blog directory. Getting listed in directories not only increase page rank but also bring a lot of traffic to your site.
2. Visit as many related blogs or sites as you can. Comment on the post you have just read and keep a link of your site there. But make sure you don't spam. Try to write some things admiring the post which will encourage the blog author to publish your comment.
3. Now write some good contented articles about your blog/site and submit them to top articles directories. Search in Google for higher page rank articles directories. For example: ezinearticles.com and goarticlesare.com are two of the leading articles directories. You will get backlinks from sites at the same time a lot of traffic. Most amazing matter that, this article may use in other people's website with a link to your site.
4. Join some forums , discussion boards that are related to your site or blog. Try to give nice answers asked by other members and refer them to your site for more information. Or post your question adding a link to your site at signature. This will also drive traffic to your site.
One important point I have missed that try to write good content so that readers willingly link to your site. More informative and useful post you have more probability to get more one way backlinks. But this is tough for new websites. So continue writing good posts. Like This Post Tweet It..!
Labels:
Blogger Tips,
Blogger Tricks,
Promote Blog
Tuesday, June 15, 2010
SEO Tips : Make Your Label as a Meta Keyword Now Increase Your Google Search of Your Blog
SEO Tips : Make Your Label as a Meta Keyword Now Increase Your Google Search of Your Blog
Meta keywords are very important to do better SEO for your blog.. And you should know that Search engines look for different description and keywords for each page of your site. If you put the same thing across all pages of your site, search engines may regard this as spam.
I saw lots of examples on how to add meta title/description based on the post title for Blogger/Blogspot. but I couldn't find one for using labels/Tags as meta keywords for each post.
After searching I found [Changing the Blogger Title Tag] which describes how to use the post title as the header. although now that could be done by less code like this
<!-- Post/Archive Page -->
<b:if cond='data:blog.pageType != "index"'>
<title><data:blog.pageName/></title>
<!-- Index Page -->
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>So instead of using "data:blog.pageTitle" you use "data:blog.pageName" for post & archive pages. Otherwise, for pages like index/label pages "data:blog.pageTitle" will do the job.
But as far as I see at the very brief Blogger documentation. This is the only way to use labels as meta keywords..
Enough talking.. Here is the code to do it.. which you should place instead of the Head tag..!
The Code is commented and it also outputs the Title and Meta Description tags(using Post title) for your convenience..
<!--::::::::::: Block1: Output post meta keywords -->
<b:if cond='data:blog.pageType == "item"'>
<b:section id='meta1' showaddelement='no'>
<!-- widget must be a of Type = 'blog' to have posts data exposed, and must have a unique id -->
<!-- Empty Includables(functions) to output nothing, You must keep them ): -->
<b:widget id='Blog2' locked='no' type='Blog'>
<b:includable id='nextprev'/>
<b:includable id='backlinks' var='post'/>
<b:includable id='post' var='post' />
<b:includable id='status-message'/>
<b:includable id='comment-form' var='post'/>
<b:includable id='backlinkDeleteIcon' var='backlink'/>
<b:includable id='postQuickEdit' var='post'/>
<b:includable id='commentDeleteIcon' var='comment'/>
<b:includable id='feedLinks'/>
<b:includable id='feedLinksBody' var='links'/>
<b:includable id='comments' var='post'/>
<b:includable id='main' var='top'><!-- Main Function of Any widget comes with ID 'main' -->
<!-- Loop Page Posts (only 1 in a post page )-->
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<!-- If the post has labels, make Meta keywords by looping lables -->
<meta name="keywords" content="<b:loop values='data:post.labels' var='label'><data:label.name/><b:if cond='data:label.isLast != "true"'>,</b:if></b:loop>" />
</b:if>
</b:loop>
</b:includable>
</b:widget>
</b:section>
</b:if>
<!--::::::::::: Block1 END -->
<head> <!-- THE HEAD -->
<!-- must include(called) here to output other head sub elements -->
<b:include data='blog' name='all-head-content'/>
<!--::::::::::: Block2: Output Index Title,keywords,decription and Post Title,description -->
<!-- Post/Archive Page -->
<b:if cond='data:blog.pageType != "index"'>
<title><data:blog.pageName/></title>
<meta name='description' expr:content='data:blog.pageName' />
<!-- Index Page -->
<b:else/>
<title><data:blog.pageTitle/></title>
<meta name='keywords' content='your,blog,keywords!!' />
<meta name='description' content='your blog description!!' />
</b:if>
<!--::::::::::: Block2 END -->Some Issues you should be aware of ):
1- XHTML validation will give your warnings about these issues :
* Meta Keywords tag Appears before the Head tag.
Why we have to put that code before the head tag? you have to ask ):
well.. You can't place a widget outside of a section, you can't place a section inside head tag. and Post lables must be called inside of 'Blog' widget.
* Meta Keywords will be surrounded with Div tags which should not appear there.
why? Cause Widget and sections Tags are auto. converted to div tags by Blogger..!
2- Some Meta tags analyzers will warn you that they don't see meta keywords (Cause it was outside of the head).. But Most search engines would be able to find your meta keywords..
As you can see that's why I'm separating the code into 2 blocks:
first one outside the Head tag to output Post Meta keywrds.
Second one inside the Head Tag to output Title and meta description of all pages and meta keywords for index page; without the need of a widget. And in case an engine didn't like those meta keywords, you still have the title and description where they should be.
3- After Adding that code , you will get errors when trying to do anything in the 'Page elements' and clicking save. the Only solution is cut Block1 from the template & save, do what you need in 'page elements' & save. paste Block1 back in the template.
It is the only way, until Blogspot pay attention to the issue!
To edit your Blogspot template
* Go to Layout > Edit HTML > Check 'Expand Widget Templates', and don't forget to save a backup before you do anything..
* Don't forget to remove those comments.
* Replace those Static Blog meta tags content with real ones. Like This Post Tweet It..!
Labels:
Blogger Tricks,
Seo Tips
Tuesday, October 20, 2009
How to Change Your Favicon In Blogger XML Templates
How to change the FAVICON in Blogger XML Templates, Simple Follow this 4 step You Will Get ..!1. Goto Favicon Website and create the your favicon And Download it..!
a. create your favicon

Like This Post Tweet It..!
Labels:
Blogger Tricks,
Favicon


