Hi @emilywatty92
This occurs because there aren’t enough posts/articles on the 9th page, which causes the pagination to move towards the top.
This looks like a custom theme. Ideally, separating the articles and the pagination inside a separate div should allow you to style the pagination and the sections better. If you are looking for a better approach, updating the theme files as above should give you more control.
If updating the theme files isn’t possible and if you are looking for a quick fix, a workaround would be to set a width, for example, width: 75% for the pagination class via CSS, and see if that helps.
Kind Regards,
Nithin
You can resolve this by adding some custom CSS to your theme. You can add the following under Appearance → Customize → Additional CSS:
body.archive .navigation {
margin-top: auto;
width: 100%;
display: block;
min-height: 80px;
}
Thank you! I will try and update theme files, wish me luck 🙂
All fixed thank you all x