Tagged: pictures images ratio corners
Hello.
I’ve seen it’s possible to obtain rounded corners on div boxes using Enfold ratio tools.
I need to present pictures with rounded corners, in both using Image function as well as Masonry Gallery.
Is there any CSS class I may use for an individual tool (one picture element or a specific Masonry Gallery)? Maybe a code that applies this effect globally?
Thank you in advance.
Hey Eduardo,
Thank you for the inquiry.
You can use this css code to apply rounded corners to the Image and Masonry Gallery element:
#top .av-inner-masonry {
border-radius: 20px;
overflow: hidden;
}
#top .avia-image-container img {
border-radius: 30px;
}
Best regards,
Ismael
Thank you very much Ismael. It works great.
Best regards.
Is there any way to apply the same efect to a column background image without border?
Hi!
Is there any way to apply the same efect to a column background image without border?
Yes, this should be possible. Please apply a unique class name (e.g., av-custom-rounded-column) to the column element in the Advanced > Developer Settings > Custom CSS Class field, then add this css code:
#top .av-custom-rounded-column {
border-radius: 30px;
overflow: hidden;
}
Cheers!
Ismael
Thank you Ismael. It works fine too.
Regards.