How do i move the Product info to be inline with the buttons?

This is how it looks at the moment:

This is how i would like it to look (edited to give visual representation):

Hard to say without seeing your code, can you send a preview or store link?

https://3m6j4vsokq7ae8ui-79570010410.shopifypreview.com

click on the name of any product to see the product details :slightly_smiling_face:

Any Product With an image*

Start with removing this line on line 467 of section-main-product.css

.product-form__buttons {
    max-width: 44rem;
}

Also remove or comment out the max width part the line on 163 of the same file as shown below:

.product-form__input {
    flex: 0 0 100%;
    padding: 0;
    margin: 0 0 1.2rem;
    /* max-width: 44rem; */
    min-width: fit-content;
    border: none;
}

This will make it look like this:

Looks fine on mobile as well:

1 Like

cheers mate :raising_hands: