Wednesday, 10 June 2015

How to show post title only in homepage

1.Go to your blog template section (Dashboard → Template → “Edit HTML” button).
2.Scroll down to where you see the </head> tag.
3.Copy and paste below code just before the </head> tag.

<style type='text/css'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>

.post-body {display:none;}
.post-footer {display:none;}
.comment-link {display:none;}
.post img {display:none;}
.post blockquote {display:none;}
.post blockquote p {display:none;}
h2.date-header {display:none;}
.post-labels {display:none;}
.post-rating {display:none;}

</b:if>
</b:if>
</style>

4.Now save the template.

How to display the last posts or comments on the sidebar?


  1. Enter the administrator page elements (Dashboard → Design or Dashboard → Layout in the new Blogger design).
  2. Add a new feed widget, with the following URL’s:To show the recent posts:
    http://BLOGNAME.blogspot.com/feeds/posts/default
    To display the latest comments:
    http://BLOGNAME.blogspot.com/feeds/comments/default

How do I add my feed of Feedburner to my blog?

On the menu: Many templates show the feed in the top menu, to change the default feed for feedburner, go to your template code (Dashboard → Design → Edit HTML orDashboard → Template → Edit HTML in the new Blogger design) and search for:
<a expr:href='data:blog.homepageUrl + &quot;feeds/posts/default&quot;'>
Replace this with:
<a href='URL del feed en Feedburner'>
Now, in the settings panel of the feed ( Dashboard → Settings → Site Feed orDashboard → Settings → Other → Post Feed Redirect URL in the new Blogger design) also add your Feedburner URL.

How do I customize my template?

For color and the font size, some Blogger templates offer an option to change it from the Dashboard (Dashboard → Design → Template designer → Advanced orDashboard → Template → Customize → Advanced in the new Blogger design). Here, you can see the result directly in the template.






Major changes in the templates needed to know at least a little CSS and HTML. A quick way to modify a template is change the images in the CSS code, for others with the same dimensions. That is the process to change the header of a design, for example.
Additionally, some templates have their own settings instructions and customization, refer to the same download page of your template.