This topic has 2 replies, 2 voices, and was last updated 5 years, 10 months ago ago by Rose Tyler
I am trying to modify the width of the product content of the woocommerce single product page.
It seems, I have to deal with the responsive.css file: https://prnt.sc/m2b4dh
how do I modify it in the child-theme?
Hello,
You need to add code like this one:
@media screen and (min-width: 1200px) {
.single-product .product-information {
width: 100%;
}
}
in style.css file of child theme.
https://prnt.sc/m2h3f2
Regards
You must be logged in to reply to this topic.Log in/Sign up