BLogger Tricks Tips and nice turorials to use Blogger Effectively,Download Templates,widgets,Plugins.Change your blogger footer,header,navi.

Showing posts with label blogger tips. Show all posts
Showing posts with label blogger tips. Show all posts

Sunday, February 8, 2009

Make Money Online listen

If you can't find a way to focus your efforts, you will not make money online. Plain and simple; believe me, if you've been seeking to making money online.

When I first got into the "make money online" field, I couldn't get focused. I was listening to this guy, that guy, another guy, every guy and got information overload and didn't take action.

I wasn't able to pick a project and stay focused and finish it. I would read an e-book or take some information from someone and try to put that information in use to make money for myself online.

Some of them had great information and I could make money from the information when I started that project. The problem was that I would never finish a project. I was always searching for something better. I was always looking for the next big thing. I was looking for something that didn't exist. I was looking for something that didn't require hardly any work and was going to make me a millionaire overnight.

There is no product that is going to do this for you!

I had the information in my hands to make a handsome living online. I just wasn't using it. I wasn't staying focused on a project long enough to see any returns.

I was lied to, like most people who get into the making money online field. We are told by people who want to sell their products to us, that we will make a million dollars overnight and don't have to do much work. Guess what, you won't make that kind of money overnight and it does take some work.

What you should do is pick out some projects and finish them.

Once you start finishing your projects, whatever they may be, creating a product, building a website, writing sales copy, writing articles, etc., the money will start coming in.

I always say that the toughest dollar to make online is the first one. There are so many people that don't make any money online and give up and go back to their day job.

The first dollar was definitely the toughest for me to make. I think it gets easier because once you have made some money online, you have broken down that first very important barrier down, it gets a lot easier.

You realize that you really can make money online and your confidence soars! You can just keep on doing what you were doing to make more money. Work harder and expand your business. Repeat what you're doing to make money and just keep expanding on that process and keep working on ways to improve your business.

Focus and hard work is going to get you a long way in life.

Using focus and hard work to make money online are the two major keys to success and don't let anyone else tell you otherwise. As you focus a "funnel" will be created to drive traffic, conversion of that traffic and ultimately sales. Focus and hard work are equivalent terms in reaching your objective. The one promise I can make, because I've experienced it, is if you will focus your efforts with your hard work you will achieve your desires!
Read More

Friday, February 6, 2009

Put image to separate posts

Do You Know How to Put an Image as Posts Separator.


On many blogs you can see an image separating the posts. To implement this in your blog


Step-1:
First you will have to create an image in an image editor or do a Google search for "free border backgrounds".


Step-2:
After creating or downloading a free image first upload it to a freehost like Photobucket.com or Googlepages and copy down the link of the image.

Step-3:
The next step is to define a class in the CSS part of your template to house your image.

For this login at Blogger.com and click on Layout link on Dashboard. Then click on Edit Html subtab of Template tab. Scroll down and paste the code below just above the
]]></b:skin>


tag in the Template code box.separator,



{

background-image: url(LINK OF YOUR IMAGE);

background-repeat: no-repeat;

background-position: center center;

height: 20px;

padding: 4px;

}


Replace the CAPS with the link of your image at Photobucket.



Now we have to place the code in the


<body>

of the template. To do this login at Blogger.com and click on Layout link on Dashboard. Then click on Edit Html subtab of Template tab. Put a check in Expand widgets template check box at the top of the Template code box and scroll down to this code in the blog posts widget :


<p class='post-footer-line post-footer-line-3'/>


Paste the code below immediately after the above line :


<div class="separator"></div>



Save Template and open in a new window!
Thats it friend,You havve now added image to the blog post succesfully!





Enjoy!
Read More

Thursday, February 5, 2009

making comments link more user friendly

Making the COMMENTS Link more User Friendly.

New Visitor? Like what you read? Then please subscribe to my Blog Feed or sign up for Free Email Updates. Thanks for Visiting!

The "0 comments" link at the bottom of the blog posts can hardly be called intuitive. Viewers fail to understand it's significance. That is why on this blog I have customized it to make it more viewer friendly.


If there are no comments on the post this is what appears "Be the first to leave a comment!". If only one visitor commented on the post viewers see "1 VIEWER CLICKED HERE TO COMMENT ON THIS POST. ADD YOUR COMMENT." If more than one visitor left a comment than you see "n VIEWERS CLICKED HERE TO COMMENT ON THIS POST. ADD YOUR COMMENT." where 'n' is the number of comments left.


This can be done by customizing the comments code.............



ENABLE COMMENTS

The first step is to enable comments in your Settings. There are three places where comments have to be enabled. Login at Blogger.com and click on Settings link on Dashboard. Follow all steps outlined in Tips on Blogger Comments to enable your comments.



This will make the comments show up on the Post Pages. On the Main Page comments are not shown since it would make the Main Page slower to load if there are many comments. If after enabling all comment settings they are still not seen then possibly your template code has been corrupted. To reset it first backup your widgets data and customization. Then login at Blogger.com and click Layout link on Dashboard. Click Edit Html subtab of Layouts tab. Scroll down to bottom of Template Code box and click on the "Revert Widget Templates to Default" link. This will lose any customization in widget templates which you can restore from the backup you had made first.




MODIFYING THE CODE

To modify the comments link code login at Blogger.com and click Layouts link on Dashboard. Click the Edit Html subtab of Layout tab. Click the 'Expand Widget Templates' checkbox on top right of the Template Code box. Wait for the page to refresh and scroll down to locate this code in the Blog Posts widget :


<span class='post-comment-link'>

        <b:if cond='data:blog.pageType != "item"'>

  <b:if cond='data:post.allowComments'>

   <a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if

cond='data:post.numComments == 1'>1 <data:top.commentLabel/><b:else/><data:post.numComments/>

<data:top.commentLabelPlural/></b:if></a>

          </b:if>

        </b:if>

      </span>


Copy and paste the code below instead of the above code :





<p style='font-size:90%'>What have you to say?</p>

<span class='post-comment-link'>

   <b:if cond='data:post.allowComments'>

<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if

cond='data:post.numComments == 0'>

    <p style='font-size:90%'>Be the first to leave a comment!</p>

<b:else/>

<b:if cond='data:post.numComments == 1'>

<p style='font-size:90%'>1 VIEWER CLICKED HERE TO COMMENT ON THIS POST. ADD YOUR COMMENT.</p>

<b:else/>

<p style='font-size:90%'><data:post.numComments/> VIEWERS CLICKED HERE TO COMMENT ON THIS POST. ADD YOUR COMMENT.</p>

</b:if>

</b:if></a>

          </b:if>

    </span>

<b:if cond='data:blog.url == data:blog.homepageUrl'>

<p style='font-size:90%'>Who has talked about this post?</p>

</b:if>







Preview and save the template. To increase the size of the letters increase '90%' in the code above.

That's it,the rest is what the users will likely to post comment your blog.



.
Read More

add icon to your posts

What's beauty if your image is shown near to all of your posts in blogger.Ya its amazing to see you with your blog title.
Here i let you know,
how to do that now?
It's very simple tasks,that you follow as i gave detailed instructions below;






1. CREATE AN IMAGE:

First step is to create a image either in an image editor or in an online image generator such as cooltext.com. Save it to your hard disk and upload it to a freehost.(www.photobucket.com) Then copy down its link/URL.



2. CREATING THE IMAGE CODE

The image code from your free hoster :


<img src="LINK OF YOUR IMAGE" style="border-width:0px" />


3. EDIT THE TEMPLATE FROM LAYOUT

Login to the "Dashboard" and click on "Layout" for the blog you wish to modify. Then click the Edit Html subtab of Template tab.
First backup the template.
Put a check in Expand Widgets Template box at the top of the template text box.


Scroll down till you come to the Blog Posts widget code. Locate this code :




<b:includable id='post' var='post'>

<div class='post hentry'>

<a expr:name='data:post.id'/>

<b:if cond='data:post.title'>

<h3 class='post-title entry-title'>

<b:if cond='data:post.link'>

<a expr:href='data:post.link'><data:post.title/></a>

<b:else/>

<b:if cond='data:post.url'>




4.If you want it to appear after the title paste the image code after this subsequent line of code :


code is:


<data:post.title/>



Preview and save Template.
Thats it yoyu have succesfully added your each posts with your own image.

Any question regrdingthis,please feel free to ask via comment.



.
Read More

Saturday, January 31, 2009

Know What is META TAGS

Do You know what is meta tags and for what purpose it is used or where it is used?
Here You i explain step by step in detailed manner of each meta tags.

title:
The Page Title is probably THE most important attribute for search engine rankings. The Page Title should contain a coherent description of the page, and should contain words that are located within the page content.By default the blogger will display the title you are currently having in your blog,or you can made custom title by adding meta tags.

Description meta tag;
The Description Meta Tag should contain a coherent description of the page, and should contain words that are located within the page content.Page description should be less than 200 characters.

Keyword meta tags;
For best results, select 12 of the most popular and relevant keywords to that particular page, ideally keyword phrases of 2 to 3 words, separated by a comma. Ensure that the keywords you use are located in the title, description and content of the page. If they are not, DO NOT add extra words, otherwise the theme of your page will be watered down. The ordering also plays a role, make sure you order the keywords in order of importance to your traffic.You can get traffic by giving any keyword but keep in mind that readers will not come again if threy ind no related information is found on your site.

Copyright Meta Tag

The Copyright Meta Tag is used to indicate that your information is copy righted.
ie Copyright YourBusiness - 2003

Author meta tags;
The Author Meta Tag is used to insert a name of the webmaster or company.



Now do you got something about METATAGS,if you still find any doubts regaridng meta tags feel free to mail me,or comment your request.

Ok lets see how to add meta tags to your blog;
add title,description,keywords,to your blog
Read More

ShareThis

© 2011 Blogger Tricks and Tips, AllRightsReserved.

Designed by ScreenWritersArena