Hi,
I have tried several solutions on the forum but none seem to work for me.
I want to add 6.4px border radius to all corners on the slideshow container found on my home page. I also want to set the opacity to 50%.
Any help is greatly appreciated.
A Shopify store owner seeks to add a 6.4px border radius and 50% opacity to their homepage slideshow container, but existing forum solutions haven’t worked.
Proposed Solutions:
slideshow.liquid and applying border-radius: 6.4px with background-color: rgba(255,255,255,0.5) in the theme’s CSS file.slideshow, .slideshow-component, and .banner__media classes with !important flags, to be added to base.cssCurrent Status:
The issue remains unresolved. The original poster (atmos-art) tested the suggestions but reported:
slideshow.liquid didn’t workThe store URL (www.atmos.art) has been shared for further troubleshooting. The discussion is ongoing with no working solution yet identified.
Hi,
I have tried several solutions on the forum but none seem to work for me.
I want to add 6.4px border radius to all corners on the slideshow container found on my home page. I also want to set the opacity to 50%.
Any help is greatly appreciated.
Please share the link to your store URL
Hello @atmos-art
To change the corner radius and background opacity of the slideshow container on your Shopify homepage, you’ll need to:
Target the correct container element in your theme’s CSS or SCSS file.
Apply the border-radius and background opacity.
Assuming you’re using a standard Shopify theme like Dawn, follow these steps:
Steps to Add Border Radius and Opacity to Slideshow Container
bash..
/sections/slideshow.liquid
Go to:
bash…
/assets/base.css
And add at the bottom:
/* Custom styles for homepage slideshow */
.slideshow-custom-wrapper {
border-radius: 6.4px;
background-color: rgba(255, 255, 255, 0.5); /* white with 50% opacity */
overflow: hidden; /* ensures children respect border radius */
}
Tip: You can adjust the rgba values to match your desired background color (e.g., rgba(0,0,0,0.5) for black at 50%).
. Save the changes
. Clear your browser cache or use incognito mode to see the changes reflected
Optional: Using Shopify’s theme editor
If your theme supports custom CSS sections in the Theme Editor, you can paste the CSS directly there for testing.
If it still doesn’t work, I can help :
. Inspect your live store if you share the store URL.
. Check which class exactly wraps your slideshow if you provide a screenshot of the full HTML structure from your browser’s DevTools.
Thank you ![]()
hello @atmos-art
Online Store > Themes>.Actions > Edit code> Assets>base.css
add the code bottom of the file
.slideshow, .slideshow-component, .banner__media {
border-radius: 6.4px !important;
opacity: 0.5 !important;
}
@media screen and (max-width: 749px) {
.slideshow, .slideshow-component, .banner__media {
border-radius: 6.4px !important;
opacity: 0.5 !important;
}
}
Thanks you
Thanks
Hi it is https://www.atmos.art/
Hi this didn’t work for me. Can the following code just be placed at the end of the slideshow.liquid file? That is how I tried to implement it.
My website url is www.atmos.art