Home  >  Q&A  >  body text

How to add rounded corners to an image using the Elementor editor

<p>This is driving me crazy. I have an image in a textbox on a simple Elementor page. It sits nicely inside the "Text Editor Widget" and I want to add rounded corners to it. </p> <p>I created a CSS class in "Site Settings/Custom CSS" and then assigned the image to the class in the image editor in the text editor. .AZ-rounded-image { border-radius: 15px; } But nothing happens... Can anyone help - I wasted three hours on this... Many thanks Andy</p>
P粉821231319P粉821231319402 days ago500

reply all(1)I'll reply

  • P粉312631645

    P粉3126316452023-08-16 11:52:13

    Have you tried setting overflow to hidden? Does it display like below? By default overflow is visible, so if the content of .AZ-rounded-image is larger, it will overflow, making border-radiusInvisible.

    .AZ-rounded-image { 
        border-radius: 15px;
        overflow: hidden;
    }

    reply
    0
  • Cancelreply