Hello @astersblog,
I checked your website it seems that you have added custom CSS code to style the post title and content because of that the pagination arrow is not clickable and in mobile, you have hidden the pagination arrows through custom CSS code. The CSS code is rendering from the cached style. I would suggest you purge all the cache and remove your custom CSS code then check it again.
Or
you can use this code to increase the z-index of the pagination arrow so that it can be clickable.
Use this code under X/Pro -->Theme option —>CSS.
.single-post .x-nav-articles{
position: relative;
z-index: 9;
}
For mobile
@media(max-width:766.98px){
.single-post .x-nav-articles{
display: block !important;
}
}
The purpose of providing the custom CSS to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.
Hope it helps.
Thanks