-
I installed a WooCommerce extension (Product-Addons) and it smooshes a big DIV right in front of the Quantity +/- buttons and the submit button. It's too crowded and I need to move things around. What I want to do, is move the quantity div and the submit button to the next row. I'm not sure where to do this. Any suggestions will be hugely appreciated. Cindy |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This should do the trick. Code goes to .woocommerce div.product form.cart {
display: block;
div.quantity {
float: left;
}
button.button {
width: calc(100% - 156px); // Width qty input + margin-right
}
}
You should check this on different screen sizes and override media queries if needed. |
Beta Was this translation helpful? Give feedback.
-
Wow. That opens up new doors for me. Thank you so much! |
Beta Was this translation helpful? Give feedback.
This should do the trick. Code goes to
_bscore_custom.scss
:You should check this on different screen sizes and override media queries if needed.