-
AuthorPosts
-
December 12, 2014 at 6:25 am #163355
Hi there,
Here is a link to the page in question:
http://willisgambier.co.uk/shop/The product titles within the shop are currently uppercase as are the titles everywhere else on the site. I would like to change the product titles in the shop to title case, is this possible?
Thank you for your help.
December 12, 2014 at 1:42 pm #163602Hi there,
Thanks for writing in!
Try to add the following CSS code via Appearance > Customize > Custom > CSS:
.woocommerce li.product .entry-header h3, .woocommerce-page li.product .entry-header h3 { text-transform: capitalize !important; }
Let us know how this goes!
December 15, 2014 at 9:28 am #164797Hi there,
The above code has worked on the main shop page but the titles on each individual product page is still all uppercase. Is it possible to have the titles on the product pages as title case as well?
Here is one example page that still has the issue:
http://willisgambier.co.uk/product/bayer-dining/Thank you for your help.
December 15, 2014 at 12:54 pm #164960Hi there,
Sorry for the inconvenience caused. Please use the following CSS workaround, place it into your Customizer’s Custom > CSS area to make it Title Case.
.single-product .product_title.entry-title { text-transform: capitalize; }
Hope that helps.
December 16, 2014 at 9:02 am #165582Perfect, thank you for your help.
December 16, 2014 at 11:56 am #165716Glad we were able to help 🙂
-
AuthorPosts