The most attractive thing in Blogger blogs is the Blog Layout and Design which attracts visitors to the blog . And since I saw many Blogger blogs, i noticed that one of the most annoying things is that there is no separator or divider between blogger posts,which is also a part of Design and Style of Blog.So this Tutorial is all about “How to add a Separator between Blogger Blog posts easily”.You have to follow following steps. Before starting the tutorial , Demo is necessary :-

Log into your blogger account, move to , Dashboard >> Layout >> Edit html, and Search the Following Code :-
.post
Below is the part which should be there, so do not disturb that part:-
.post {
margin: 0 0 40px 0;
width: 90%
}
Now, we need to add some code to add separator between the Blog Posts , the code which we are going to put is in between the braces { and }
Here is the css for separator which you have to add between the braces :-
background: url(Separator-Image-Url);
background-repeat: no-repeat;
background-position: bottom center;
margin:.5em 0 1.5em;
padding-bottom:2.5em;
The whole code will look like this :-
.post{
margin: 0 0 40px 0;
width: 90%;
background: url(Separator-Image-Url);
background-repeat: no-repeat;
background-position: bottom center;
margin:.5em 0 1.5em;
padding-bottom:2.5em;
}
Just add the Image Link In Between (Separator-Image-Url). And move to your Blog and refresh it and see the change. You can use following images as Separators, just Copy Link Location of Original Link of Desired Image.
![]()
Link to Use :- Original Link
![]()
Link to Use :- Original Link
![]()
Link to Use :- Original Link
You can create your own Blog Post Separators with Paint or any image editing tool.