hey i want to change the width of the right part of the product page (see image) so that all aligns nicely on the right side. Variant and add to cart buttons should be same width as the description and the buttons underneath.
if anybody know anything about this let me know please.
Thanks
1 Like
Hi @ManuelH
Check this one.
- From you Admin page, go to Online Store > Themes
- Select the theme you want to edit
- Under the Asset folder, open the main.css(base.css, style.css or theme.css)
- Then place the code below at the very bottom of the file.
.product-form__input, .product-form__buttons {
max-width: 100%;
}
thanks man, but didnt work unfortunately. Btw how can you see what website I am on?
You can add !important
.product-form__input, .product-form__buttons {
max-width: 100% !important;
}
And Save.
This code should work if it properly pasted.
You provide me your store URL before by PM.
Thanks, so the commas are intentional between the classes?
thank you it worked great!!!