@crazycells They can be anywhere you’d prefer. You can just change the .arrow.left, .arrow.right
class to move to the preferred position. Currently, it’s set at 50%, but can be any value you want to reach the desired position. In this case, it would probably be better to substitute top
for bottom
and set the position in px
to ensure the placement is the same no matter which screen estate you have.
For example
.arrow.left, .arrow.right {
margin-left: 10px;
margin-right: 10px;
align-content: center;
position: fixed;
bottom: 120px;
}
That now means the page scroller (the button that appears bottom right) will be in the way, although on thinking about it, we already have a page navigation when you are in the topic, so no point in having another. That would be a minor alteration to the scroll top function to have it not appear on posts.