Apply style to all images except 1 section

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

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before

If you find my advice helpful please remember to LIKE and accept as SOLUTION.

Thanks!

Hey @INFRA

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. 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

  1. Go to Online Store → Theme → Edit code.
  2. 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:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. 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!