Hi!
Please can u provide some code to remove the ligth gray line arround my collection? I would like to increase the circle size too
Hi!
Please can u provide some code to remove the ligth gray line arround my collection? I would like to increase the circle size too
Hi There,
Thanks for reaching out. Are you sure it is not a border from the image itself?
Best would be if you could share a link to your site and advise which theme you are using.
Yeah, im sure that border isnt from my pictures. Im using a custom theme.
My store: lojate.com
password: diagli
Aprpeciate your help
If you feel comfortable editing code, I would suggest making a backup of your theme, then heading over to the theme.css file. On line 4158, you should see the following:
.collection-item__image-wrapper--rounded {
/* adding a stacking context (position: relative; z-index: 0;) is necessary due to a bug in Safari. More info here: https://bugs.webkit.org/show_bug.cgi?id=98538 */
position: relative;
z-index: 0;
overflow: hidden;
border-radius: 100%;
}
I would go ahead and comment out the border-radius (or replace the code with the follwoing):
.collection-item__image-wrapper--rounded {
/* adding a stacking context (position: relative; z-index: 0;) is necessary due to a bug in Safari. More info here: https://bugs.webkit.org/show_bug.cgi?id=98538 */
position: relative;
z-index: 0;
overflow: hidden;
/* border-radius: 100%; */
}
This should solve your issue.