X Pagination Broken On Mobile

Hello Support,

I have some problems with the pagination of Xtheme on the mobile version of the website.
As you can see in the picture the first page of my Woocommerce store it behaves weird.

On other pages it looks good. Can you please help me fix this?

Thanks in advance!

  • GM

Hi @DragonBallZMods,

It’s because of this custom CSS:

.x-pagination {
    padding: 50px;
}

To make it not affect on mobile, please change it to:

@media (min-width: 481px){
	.x-pagination {
	    padding: 50px;
	}
}

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.