Hi,
I want to change the button style in the slideshow so that it has rounded corners. I’m using August theme .
My website is vitamia.mx
Thank you in advanced.
A user seeks to add rounded corners to slideshow buttons in the August Shopify theme.
Solution Provided:
.slideshow__btn class with border-radius: 12pxOutcome:
The solution successfully resolved the issue. The CSS customization applies rounded corners and includes additional styling for background color (#b96f4a) and interactive hover states with opacity and transform effects.
Hi,
I want to change the button style in the slideshow so that it has rounded corners. I’m using August theme .
My website is vitamia.mx
Thank you in advanced.
Hello @Pachos
.slideshow__btn {
position: relative;
border-radius: 12px;
transition: all 0.3s ease;
overflow: hidden;
z-index: 1;
}
.slideshow__btn::before {
background-color: #b96f4a;
border-radius: 12px;
z-index: -1;
transition: all 0.3s ease;
opacity: 0;
transform: scale(1.2);
}
.slideshow__btn:hover::before {
opacity: 1;
transform: scale(1);
border-radius: 12px;
background-color: #b96f4a;
}
It works! Thank you very much.
Hello @Pachos
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.