I want to make the corners curved on this pop up but not sure how
Topic summary
A user seeks help rounding the corners of a quick-add popup modal on their Shopify store.
Solutions Provided:
Two working CSS approaches were offered:
-
Custom CSS via Theme Settings:
- Navigate to Customize > Theme settings > Custom CSS
- Add:
.quick-add-modal__content { border-radius: var(--variant-pills-radius) !important; }
-
Direct Code Edit:
- Access Online Store > Themes > Edit code
- Locate
base.cssfile - Insert:
.quick-add-modal .quick-add-modal__content.global-settings-popup { border-radius: 20px; }
Resolution:
The user confirmed the solutions worked successfully. One responder requested a public URL for better troubleshooting context, though solutions were provided without it.
@harshi1 Others aren’t mind readers, provide inspectable public urls
https://community.shopify.com/c/blog/how-to-get-support-from-the-community/ba-p/2254458
Hi @harshi1 ,
Please go to Customize > Theme settings > Custom CSS and add code:
.quick-add-modal__content {
border-radius: var(--variant-pills-radius) !important;
}
Hello @harshi1
Please follow the steps below after logging into the Shopify admin:
-
Go to your Shopify Admin panel.
-
Click on Online Store > Themes.
-
Find the live theme and then click Actions > Edit code.
-
Search base.css
-
Insert the provided CSS code at the end of the file and save the changes.
.quick-add-modal .quick-add-modal__content.global-settings-popup
{
border-radius: 20px;
}
Please hit Like and Mark it as a Solution if you find our reply helpful.
thank you so much this work as well
Hi @harshi1 ,
It’s my pleasure
