Hi Lawrence,
This is a bit of a tough one. I can get the name of the product centered but not the price. The issue is the sale price of items starts messing with any kind of positioning that I try and apply.
So you can use:
#top.woocommerce-page .template-shop ul.products li a {
text-align: center;
}
But then the prices need something like:
#top .template-shop .price span {
text-align: center;
display: block;
}
But this won't work with the on sale items since it causes a line break. You can try tweaking from there but the only other thing I can think of is to do a padding or margin hack with 45% left to fake the centering. It looks a bit odd on low priced items however so it isn't great either.
Regards,
Devin