Showing posts with label Blogger. Show all posts
Showing posts with label Blogger. Show all posts

Highest Technorati Blog Listed

Technorati is an Internet search engine for searching blogs. As of June 2008, Technorati indexes 112.8 million blogs and over 250 million pieces of tagged social media. Technorati is under Creative Commons with following CC License. Your can share any blog and sharing the story in this web. Its great.

Technorati uses and contributes to open source software. Technorati has an active software developer community, many of them from open-source culture. Sifry is a major open-source advocate, and was a founder of LinuxCare and later of Wi-Fi access point software developer Sputnik. Technorati includes a public developer's wiki, where developers and contributors collaborate, as well as various open APIs.

The site won the SXSW (South by Southwest) 2006 awards for Best Technical Achievement and also Best of Show.

image

About Technorati

Technorati collects, organizes, and distributes the global online conversation.

Technorati was founded to help bloggers to succeed by collecting, highlighting, and distributing the online global conversation. As the leading blog search engine and most comprehensive source of information on the blogosphere, we index more than 1.5 million new blog posts in real time and introduce millions of readers to blog and social media content.

“If Google
is the Web’s reference library, Technorati is becoming its coffee house.”
Time Magazine

Technorati Media extends our service and value by matching bloggers and social media creators with marketers who want to join the conversation.

Below is top rank listed blog in Technorati that you can share and refer.

Have a Coffee with Technorati

 

>>Read Full Article

Expandable post summaries for Blogspot and Blogger

With this trick, you can choose to display an arbitrary amount of text from the beginning of each post, as a teaser for the whole thing. Then users who want to read the rest of the post can click a link to see the full text. This is handy if you have lots of long articles all on one page. Note that you'll need to have post pages enabled in order to make this feature work.

To enable Post Pages, first go to Settings > Archiving:

image

Click Save Settings at the bottom of the page.

Create expandable post summaries

There are three ingredients that go into this feature: conditional CSS, a "read more" link for each post, and a modification for the posts that use this feature. So let's go through it step by step.

Let us see the steps to be followed for modifying the template to implement this

  1. Log in to your blogger account select Layout of the blog which you want to modify
  2. Navigate through Template --> Edit HTML
  3. Take backup of your template by clicking Download Full Template. This backup will help you if you want to revert to old template
  4. Search for ]]></b:skin> in your template HTML and add the following code (Shown Below) in between ]]></b:skin> and </head>

    ...................................................................................................

    <!-- Style to implement "Read more on this Article" link in all the posts (Start) -->
    <style>
        <b:if cond='data:blog.pageType == "item"'>
            span.fullpost {display:inline;}
        <b:else/>
            span.fullpost {display:none;}
        </b:if>
    </style>
    <!-- Style to implement "Read more on this Article" link in all the posts (End) -->

    ..................................................................................................

  5. After pasting the code, your template should look like as shown in the following imageimage                                                                                     
  6. Save your template and click on select Expand Widget Templates
  7. Search for <data:post.body/> in the template HTML and add the following piece of code (Shown Below) after <data:post.body/>

    ..............................................................................................

    <!-- Code to show "Read more on this article..." Link (Begin) -->
              <b:if cond='data:blog.pageType != "item"'>
                  <span>
                    <a expr:href='data:post.url' style='color:#0000FF; text-align:right; font-weight:bold; text-decoration:none' >Read more on this article...</a>
                 </span>
              </b:if>
              <!-- Code to show "Read more on this article..." Link (End) -->

    ...............................................................................................

  8. After pasting the code, your template should look like as shown in the following image. Save your template.image
  9. That's all. Your template is modified to show expandable posts.
  10. Now in every post, the content which you want to show only in post's page should be included between <span class="fullpost">This will be shown only in post's page</span>.
  11. Here is the beginning of my post. <span class="fullpost">And here is the rest of it.</span>

      Now, when a reader visits your blog, this post will appear like this:

      Here is the beginning of my post.
      Read more!

  12. When they click the link, they'll go to the post page where they'll see the whole thing:

     Here is the beginning of my post. And here is the rest of it.

Reference:

>>Read Full Article

Creative Commons License
World Today Blog by abul fahd is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.
Based on a work at www.panda.org.
Permissions beyond the scope of this license may be available at www.panda.org/using_site_content/index.cfm