Troubles rounding wordpress corners

My current website is made with WordPress, and my theme is based on Twenty Eleven (default theme) which I just modify to meet my requirements. But I have one major problem. The corners of the container just wont round. Here’s the style.css and here’s a live demo.

How could I round the corners? I’ve only managed to round the banners corners…

Related posts

Leave a Reply

1 comment

  1. As I consulted a friend to help, I was told to use an invisible border around the page, so I did:

    #page {
        margin: 2em auto;
        max-width: 1000px;
    border:1px rgba(0,0,0,0.0);
    -webkit-border-radius:6px;-o-border-radius:6px;-moz-border-radius:6px;
    }
    

    Problem solved.