Variant pop-up layout issue - Pitch theme

I am having an issue with the variant picker pop-up. When I use the “quick add” button on the product card, it brings up this variant picker pop-up and as you can see it’s not filling the whole pop-up box and is aligned to the left. How can I fix this so it fills the whole box?

Can you share your site url please.

Go to theme editor, theme settings, scroll down to “custom css”, paste this:

.quick-add-modal__content {
  padding: 20px 50px !important;
}

it has improved the look however now there is a big scroll bar on the right which isn’t necessary? am i able to reduce the text size perhaps so that the scroll bar disappears?

Try this instead:

.quick-add-modal__content {
  padding: 50px !important;
  height: fit-content !important;
}
.quick-add-modal__content .product-details .group-block {
  padding-top: 0px;
  width: 100%;
}

thank you so much it worked!

1 Like