This topic has 8 replies, 2 voices, and was last updated 7 years, 11 months ago ago by Olga Barlow
Hey there,
I need to change a couple of things starting at the layout of the product pages. How can I change Product name, category and quantity so they are not written in capitals anymore? I also would like to change the color of Productname, the Price, and Quantity. It would be nice if you can help me with this. Thank you.
Hello,
Are you talking about single product pages or about Product Categories? Could you, please, provide me link to your site in Private Content area?
Regards
Hey Olga,
I am talking about the single products page. Thanks
Hello,
Add the following code in child theme style.css
.product-information .product_title, .product-information .products-page-cats a, .qty-span {
text-transform: capitalize;
}
.product-information .product_title {
color: #009fe3;
}
.product-information .price, .product-info-wrapper .price, .product-summary-center .price {
color: #009fe3;
}
.qty-span {
color: #009fe3;
}
Regards
Hello Olga, I added it to the child theme and updated but it somehow only works for the mobile version. At my desktop nothing changed.
/*
Theme Name: Xstore Child
Theme URI: https://www.8theme.com/
Description: XStore Child Theme
Author: 8theme
Author URI: https://www.8theme.com
Template: xstore
Version: 1.0
Text Domain: xstore-child
*/
.product-information .product_title, .product-information .products-page-cats a, .qty-span {
text-transform: capitalize;
}
.product-information .product_title {
color: #009fe3;
}
.product-information .price, .product-info-wrapper .price, .product-summary-center .price {
color: #009fe3;
}
.qty-span {
color: #009fe3;
}
great thank you!
You are welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up