Home > Software engineering >  Change the border radius of the slider
Change the border radius of the slider

Time:12-11

I am trying to change the border radius of the slider on the website. I am not able to do it through elementor widget, column, or section styles. Can someone help me change the border-radius.

eleven46.eu is the website

enter image description here

CodePudding user response:

The issue in this case is the usage of flexbox.

To fix the problem, you need to add following snippet to the custom CSS code of the column:

.elementor-element-ba1ea68 {
    border-radius: 25px; #rounded corners
    overflow: hidden; #flexbox fix
}

If you have Elementor Pro, omit the opening and closing line of the CSS code I provided. If you can't put the code in Elementor's CSS field, paste it in the Wordpress' custom CSS (Appearance -> Editor in the dashboard of your WP page)

Answer based on this answer, originally posted by web-tiki

  • Related