(Squarespace) Move an item to right side of Header

Suppose you have a Header with these navigation items

You want to move “Past Articles” to right side of Header.
You can use this code to Website > Website Tools > Custom CSS

div.header-nav-item:last-child {
    position: absolute;
    right: 0;
}

2 Likes