Can someone help me round my corners?


I need my corners to be rounded, how can I do that?

1 Like

Hi @DaddyMommyMe

Would you mind to share your store URL? Thanks!

1 Like

https://mazyliams.com/

Hi @DaddyMommyMe ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

.slideshow__text.banner__box.content-container.content-container--full-width-mobile {
    border-radius: 35px !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Thanks for the info,

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.slideshow__text.banner__box {
    border-radius:var(--buttons-radius);
}

And Save.

Result:

1 Like