Dawn Change Image Texte Box Border Radius

Hello,

I would like to modify the code of the Dawn theme of Shopify and round the Images with text block, like this :

How can I do that please?

Thanks in advance.

Have a nice day,

2 Likes

@Likidie
Welcome to the Shopify community!
Thanks for your good question.

Please share your store URL.
So that I will check and let you know the exact solution here.

1 Like

@Likidie Can you please send me store url?

https://laptopsleevetest.myshopify.com/

password : thabut

https://laptopsleevetest.myshopify.com/

Password : thabut

@Likidie

.image-with-text.collapse-corners:not(.image-with-text--overlap) .image-with-text__grid--reverse .image-with-text__content:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: 25px !important;
}
.image-with-text__text-item.grid__item {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

add this code in the bottom of the component-image-with-text.css

1 Like

@Likidie

Add the following CSS code to your assets/ component-image-with-text.css bottom of the file.

.image-with-text.collapse-corners:not(.image-with-text--overlap) .image-with-text__grid--reverse .image-with-text__content:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: 25px !important;
}
.image-with-text__text-item.grid__item {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

Thanks!

Hi @Likidie ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-image-with-text.css->paste below code at the bottom of the file:
.image-with-text.collapse-corners:not(.image-with-text--overlap) .image-with-text__grid--reverse .image-with-text__content:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: 25px !important;
}
.image-with-text__text-item.grid__item {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.