How to make the dawn image banner text box edges circular

So I just want to make that box edges circular

1 Like

Hello @Amxr

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media only screen and (min-width: 750px){ .banner__box { border-radius: 25px !important; } }

Hi @Amxr

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:

.banner__box {
    border-radius: 20px !important;
}

And Save.

You can adjust the size of the rounded corner.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!