Okay
  Public Ticket #1180018
Body Border Rounded Corners
Closed

Comments

  • Juanacatan started the conversation

    I was wondering, how can i get rounded corners using the body border option?

    Like this: http://codepen.io/chriscoyier/pen/EmKCa

    Thanks!

  •  2,744
    Andrew replied

    Hi there,

    Thank you for reaching out to us.

    You can add rounded corner using the following code:

    .container-wrap {
        padding: 0;
        margin: 20px;
        border: 20px solid rgb(38, 40, 44);
        border-radius: 30px;
    }
    div#header-secondary-outer {
        margin: 50px 20px;
        width: calc(100% - 40px);

    Hope this gets to help.

    Best regards.

  • Juanacatan replied

    Sorry for late reply. Thank you!