0
How can I apply the same attributes and the same classes but with different product ids? The following code is working but I think we can simplify this CSS
.postid-2201 .product .summary .cart .quantity {margin: 0px; display: none;}
.postid-3526 .product .summary .cart .quantity {margin: 0px; display: none;}
.postid-3532 .product .summary .cart .quantity {margin: 0px; display: none;}
.postid-2201 .product_title {display: none;}
.postid-3526 .product_title {display: none;}
.postid-3532 .product_title {display: none;}
.postid-2201 .product_meta {display: none;}
.postid-3526 .product_meta {display: none;}
.postid-3532 .product_meta {display: none;}
.postid-2201 .product .entry-summary .price {display: none;}
.postid-3526 .product .entry-summary .price {display: none;}
.postid-3532 .product .entry-summary .price {display: none;}
.postid-2201 .fusion-separator.sep-solid {display: none;}
.postid-3526 .fusion-separator.sep-solid {display: none;}
.postid-3532 .fusion-separator.sep-solid {display: none;}
.postid-2201 .mnm_message_content {margin: 0 0 0 10px; border: 0;}
.postid-3526 .mnm_message_content {margin: 0 0 0 10px; border: 0;}
.postid-3532 .mnm_message_content {margin: 0 10px 0 10px; border: 0;}
.postid-2201 .woocommerce-error {display: none;}
.postid-3526 .woocommerce-error {display: none;}
.postid-3532 .woocommerce-error {display: none;}
.postid-2201 form.cart {margin: 0px; display: grid;}
.postid-3526 form.cart {margin: 0px; display: grid;}
.postid-3532 form.cart {margin: 0px; display: grid;}
.postid-2201 button.single_add_to_cart_button.button.alt.disabled { background-color: #dadada; cursor:Default;}
.postid-3526 button.single_add_to_cart_button.button.alt.disabled { background-color: #dadada; cursor:Default;}
.postid-3532 button.single_add_to_cart_button.button.alt.disabled { background-color: #dadada; cursor:Default;}
to
.postid-3532 .mnm_message_content {margin: 0 10px 0 10px; border: 0;}
is different from the other same ?– Pedro Henrique
I tried to put it that way but it didn’t work: . postid-2201.postid-3526.postid-3532 . product . Summary . Cart . Quantity {margin: 0px; display: None;}
– Marcus Peter Lajus
Yes Pedro, Each postid is a product that this in Woocommerce and I want to apply this css only in these 3 products
– Marcus Peter Lajus