INFRA
1
HI there,
I added below code in my theme.liquid file to get all the corners round. I just need it to not apply to this section on the homepage:
class=“slider-items-template–24072017936666__ss_slider_PGUGLd”
How can best exclude this?
Thanks so much!
website
password: chaos
Hi @INFRA
- Go to Online Store → Theme → Edit code.
- Open your theme.liquid file
- In theme.liquid, paste the below code before
If you find my advice helpful please remember to LIKE and accept as SOLUTION.
Thanks!
Moeed
3
Hey @INFRA
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @INFRA
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
#chaos-in-the-cbd .slider-image-template--24072017936666__ss_slider_PGUGLd img {
border-radius: 0 !important;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Please add this code to Custom CSS of that section.
img { border-radius: unset; }
Hello @INFRA ,
Here are the steps to apply the necessary changes in your Shopify store:
- In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
- Locate Asset > base.css and paste the following code at the bottom of the file:
.swiper-wrapper a {
border-radius: unset !important;
}
Let me know if you need further assistance!