How to change corner radius of containers on image slideshow?

Hi,

I am trying to add a corner radius of 6.4px to the corners of the containers on this section of my homepage but I cannot figure it out.

Would anyone be open to helping? Thanks in advance!

URL: https://www.atmos.art/

1 Like

Hi @atmos-art

let try to add this Custom CSS code:

.slideshow.banner .slideshow__text.banner__box {
  border-radius: 6.4px;
}

You can do that by adding this code to Custom CSS of that slideshow section

.banner__box {
    border-radius: 6.4px;
}
1 Like

Thanks again Dan. This works great!