• Resolved raisingmemories

    (@raisingmemories)


    I’m using the xMag theme, with the Boxed layout style.
    I have a background image, and the main content area of my blog is white.
    I would like to have rounded corners at the top and bottom of the white area of my blog

    Is there some CSS code that I can add to do this?

Viewing 1 replies (of 1 total)
  • hi @raisingmemories,
    add this CSS code:

    .site-boxed #page {
    border-radius: 10px;
    }
    .site-boxed .site-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    }
    .site-boxed .site-footer {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Round Corners in xMag theme’ is closed to new replies.