Website : whynotcity.com pass lahyoo
Hi , can anybody knows how to remove the frame surrounding product image ?
A user seeks help removing the border/frame around product images on their Shopify store (whynotcity.com).
Solution Provided:
Multiple respondents offered nearly identical CSS-based solutions:
base.css or theme.css fileCSS Variations Suggested:
.global-media-settings { border: 0px !important; } or border: none !important;.product-media-container { border: none !important; }.global-media-settings.gradient { border: none; }body .global-media-settings { border: none !important; }One alternative approach mentioned using the theme customizer (Settings → Custom CSS) instead of editing code files directly.
Status: Multiple working solutions provided with visual confirmation screenshots. Issue appears resolved, though the original poster hasn’t confirmed which solution they implemented.
Website : whynotcity.com pass lahyoo
Hi , can anybody knows how to remove the frame surrounding product image ?
Hello @Whynot102
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
.global-media-settings {
border: 0px !important;
}
result
Thanks
Hi @Whynot102
You can follow the instruction here :
Go to Shopify > Online store > theme > customize
Click to Settings > Custom CSS > Paste this code to the section and save.
.product-media-container {
border: none !important;
}
Hi @Whynot102
.global-media-settings {
border: none !important;
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hello, @Whynot102
.global-media-settings.gradient {
border: none;
}
Thanks!
Hello @Whynot102 ,
Here are the steps to apply the necessary changes in your Shopify store:
body .global-media-settings {
border: none !important;
}
Let me know if you need further assistance!