(Squarespace) How to change position of blog pagination: Newer, Older Post

To change position of blog pagination: Newer, Older Post.

You can use this code to Custom CSS.
You can also use this free blog tool so you can customize blog easier without using code.

nav.blog-list-pagination {
    flex-direction: row-reverse;
}
.newer>a {
    flex-direction: row-reverse !important;
}
.newer .icon {
    transform: rotate(180deg);
    position: relative;
    top: 10px;
}
.older>a {
    flex-direction: row-reverse !important;
}
.older .icon {
   transform: rotate(180deg);
    position: relative;
    top: 10px; 
}

Result

1 Like