Hi all! I have two “text with image” containers on my home page. On the desktop version i was able to take off the corner radius so that the corners are square and not rounded. However, on mobile view, the corners are still rounded. How do i change this? Note i have entered custom code already to stretch the container to the full width of the page. I just need to take off the rounded corners so that it looks like the container touches both sides and is full width of the page. See image for how it looks on mobile. The blue container at the top and red at the bottom.
Hello @AlexDaSilva
Can you share store URL?
Sure! Thanks for your help
Hi @AlexDaSilva
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
@media (max-width: 767px){
body .shopify-section.section .image-with-text__media.image-with-text__media–small.gradient.color-accent-1.global-media-settings.media img,
.shopify-section.section .image-with-text__media.image-with-text__media–small.gradient.color-accent-1.global-media-settings.media,
div#ImageWithText–template–21663823888678__image_with_text_egqUmW ,
div#ImageWithText–template–21663823888678__image_with_text_kg7ynD,
.image-with-text__media.image-with-text__media–small.gradient.color-background-2.global-media-settings.media {
border-radius: unset !important;
}}
Hope that my solution works for you.
Best regards,
Henry | PageFly
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
This worked perfectly, thank you so much!


