Hey everyone,

I would first like to thank you for this great theme, I have been experimenting with it and have learned a lot.

What I can't seem to figure out is how to add rounded corners to the content area. I have disabled the primary links(didn't add any to the menu) because I am not going to need them.

If I don't include the primary links, the content container shows up with sharp angled corners.
I know that this is normal function for the theme, however what I am asking is how to add the rounded corners theme to the content container?

I have some CSS knowledge so I will be able to do this - I just need some insight or a point in the right direction.

Thanks for your help and wonderful theme!

Comments

ajross’s picture

How to do this depends on whether you are using the postscript top region or not. If you are, then you need to add the round corners to the top of that region. If you aren't then you need to add them to the top of #main. If you are using the postscript top on some pages and not others, then you may have to set up something to cover both cases.

So what you need to do will look like one or the other of the following:

.white-page-bg #main {
  border-radius: 3px 3px 0 0;
}

.white-page-bg #preface-top {
  border-radius: 3px 3px 0 0;
}

adjusted to however you want the corners, of course. Let me know if you have problems.

ajross’s picture

Status: Active » Closed (works as designed)