How-to Separate Blogger (Blogspot) Posts by Image

One of the most important factors to give your visitors a good impression about your blog, is to make it easy to read, And since i see many blogs, i noticed that one of the most annoying things is that there is no separator or divider between blogger posts, so today we’ll lean how to add a Separator between blogspot posts easily.

Demo
Step 1:

Log into your blogger account, navigate to, Dashboard >> Layout >> Edit html, press (Ctrl+F) on your keyboard and find the following code.

.post

This is the cs part that controls your post layout and style, it must contains few css properties like the following.

.post {
margin: 0 0 40px 0;
width: 90%;
}

Now we want to add the separator css properties between the opening and closing tags { and }.

Here is the separator css properties :

background: url(Separator-Image-Url);
background-repeat: no-repeat;
background-position: bottom center;
margin:.5em 0 1.5em;
padding-bottom:2.5em;

And here is what you need to change in above code to customize it to your blog.
Separator-Image-Url
Change it to the separator image url,
2.5 If you found that the separator displayed behind part of your post latest line, increase this number, for example to 3.5 or 4.5.

Now your final code should looks Like The following one.

.post {
margin: 0 0 40px 0;
width: 90%;
background: url(http://www.imagehost.com/separator.jpg);
background-repeat: no-repeat;
background-position: bottom center;
margin:.5em 0 1.5em;
padding-bottom:2.5em;
}

Step 2:

Now find or create a posts separator image which you want to use in your blog, just copy the image url and paste it in to it’s place in above code.

For Free Separator Images search Google for the following keywords:
  • Page dividers
  • Page dividers clip art
  • page dividers graphics
  • page dividers animated

Advertisement

No comments:

Post a Comment