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;The Modified code may look like this.
border: 1px solid #E23BEF;
#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.
0 comments:
Post a Comment