HT23
1
Hello, I would like to remove this grey line around my transparent image.
https://quatreausoir.fr/pages/flash
I tried this code but it didn’t work
.section-template–23166564008201__image_with_text_4X8CjR-padding .rte img {
border: none;
}
Can somebody help me please ?
Hi HT23
- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file
.image-with-text__media.image-with-text__media--adapt.global-media-settings.background-transparent.media {
border: none !important;
}
Result:
Best,
Esther
Hi @HT23 ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css file Add the provided code at the end of the file.
.image-with-text__media{
border: none !important;
}
kazi_1
4
@HT23
Add this CSS bottom of base.css
.section-template–23166564008201__image_with_text_4X8CjR-padding .image-with-text__media {
border: none;
}