Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #433757

    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… :-)

    #433980

    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

    #434017

    perfect! thank you once again, please mark topic as closed… :-)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change the corner radius on a notification box’ is closed to new replies.