Stylish Older Post, Newer Post link in Blogger


Make the Older Post and Newer Post more beautiful just by applying border to it. To apply the Border to the link as shown in the Image just search for the line #blog-pager-newer-link { and #blog-pager-older-link { then post the below code exactly below them.


padding: 4px;
border: 1px solid #E23BEF;
The Modified code may look like this.

#blog-pager-newer-link {
padding: 4px;
border: 1px solid #E23BEF;
float: left;
}

#blog-pager-older-link {
padding: 4px;
border: 1px solid #E23BEF;
float: right;
}

Here #E23BEF is the Hexadecimal color code for pink. You can also just define color name like "border: 1px solid black;" for black color border.

No comments:

Post a Comment