Hi, i’ve been able to add a radious on various elements, but i cannot figure out how to get a corner radius on notification boxes, i’ve tried this:
.avia_message_box.avia-size-large {
padding: 15px;
border-radius: 10px;
}
and this:
.avia_message_box.avia-size-large {
padding: 15px;
border-radius: 10px !important;
}
but neither work, any ideas? thanks in advance guys… :-)
Hi stephenturner!
Thank you for using Enfold.
Please use this:
.avia_message_box {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
If it doesn’t work, add the !important attribute right after the css values.
Cheers!
Ismael
perfect! thank you once again, please mark topic as closed… :-)