How to stack variant options vertically on Debutify Theme

If any way possible, can I stack my variant options on top of each other vertically rather than horizontally?

PS: Also, is it possible for me to make my description more narrow and take up less width compared to the image? (ex. 70% image 30% description)

Store link: www.revailco.com

Thanks!

1 Like

@Revail

can you please check your theme custom setting may be allow this!

also please share more product images url so i will set grid

Hey I checked my theme and it doesn’t allow any modification to it

As for product image URL, I’m not too sure as to what that is

Here’s a product page for example: https://revailco.com/products/mamba-hoodie-1?variant=41118384226470

1 Like

@Revail

oh sorry can you please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media only screen and (min-width: 1025.1px) {
.grid__item.large--seven-twelfths.medium--seven-twelfths.text-center {
width: 70%;
    -webkit-flex: 0 0 70%;
    -moz-flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
}
.grid__item.product-single__meta--wrapper.medium--five-twelfths.large--five-twelfths {
width: 30%;
    -webkit-flex: 0 0 30%;
    -moz-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
}
}
1 Like

Thanks everything works! Do you happen to know how to stack the variants on top of one another?

1 Like

@Revail

its my pleasure to help us

1 Like