Can't click on articles on category view from mobile devices

When accessing my website via mobile devices and navigating to categories I am only able to click on the latest two posts but can’t click on any other post. Anyone else with that experience or any suggestions? Thank you very much!

Hey there,
I hope you’re doing well today

Kindly provide the link to your website so we can investigate this issue for you.
In the mean time, The Theme and all plugins are up to donate.

Best Regards,
Support

Mike,

I had this problem. If you look at inspector (not possible when on an actual mobile device), you’ll see that the sidebar container overlaps the “primary” post display. I added this to “Additional CSS” in the customizer:

@media (max-width:768px) {
#secondary {
z-index: 0;
}

#primary {
z-index: 1;
}
}

It doesn’t really address the problem, just makes sure the main column appears on top of the sidebar column. Hope this helps.