The default sorting box is showing for me on your shop page
The pagination can’t have css declared as display: block when you’re wanting to justify content to center. Therefore, you’ll need to declare display as flex, as shown in my screenshot.
It looks like you have a few issue you’d like to tackle, let’s start from the top.
the “default sorting” box is missing
Checking your site, much like @isodos, I am also able to see the “default sorting” box:
If you are not seeing the same, can you try clearing your browser cache and see if this makes any difference?
move the pagination items to the center of the page
Can you try adding the following CSS to?Appearance?→ Customize → Additional CSS?and see if this does the trick:
/* Center Align Pagination */
.woocommerce nav.woocommerce-pagination ul {
margin: 0 auto !important;
}
When applying this CSS, it’s important to test the changes on mobile devices to ensure they render correctly and maintain responsiveness with your current theme.
move category titles to the left of the page instead of being centered.
Would you mind sharing a screenshot of where this is being displayed on your site so that we can take a closer look?
If you don’t already have a screenshot tool installed,?Snipboard.io?can be used for easily sharing screenshots. Please follow the instructions on that page, then paste the URL in your reply here.
Hmm, can you try replacing the previous CSS with this and see if it makes any difference?
.woocommerce nav.woocommerce-pagination {
text-align: center !important;
}
Here is the expected outcome after applying the CSS:
If this is still not working on your end, it looks like you are currently using the Kadence theme on your site. I’d suggest reaching out to the Kadence theme developers to see if they have any settings within the theme that are overriding this.
Here is a direct link to their community support forums:
Before marking this topic as resolved, I’d just like to touch base on the third issue you mentioned:
move category titles to the left of the page instead of being centered.
Do you still need help with this, or are you all set?
If you still need help, please share a screenshot of where this is being displayed on your site so that we can take a closer look?
If you don’t already have a screenshot tool installed,?Snipboard.io?can be used for easily sharing screenshots. Please follow the instructions on that page, then paste the URL in your reply here.