Read up on using child themes to modify your theme files. If you have trouble, check out the troubleshooting area.
WPFolio version 1.6 includes a sample child theme for adding your own modifications. These modifications stay separate from WPFolio so you can update WPFolio in the future and keep your tweaks.
One change you may want to add is to add rounded corners to your design. The following code snippet, added to your child theme’s style.css file will add these rounded corners.





5 Comments
I entered the code above and it works in Safari, but it only rounds the upper left corner in Firefox 3.6.13. Any ideas? I’m temporarily parked here:
http://www.jangilbertart.com/wp
Ah, there was a typo in the code. I just fixed it. Thanks for pointing it out.
Thanks! Worked like a charm. Love the WPFolio theme by the way.
extra note: mozilla + chrome weren’t reading the upper container CSS (safari was reading the upper right but not the upper left) but I added this
.container, .header{
border-top-left-radius: 10px;
-moz-border-radius-topleft: 10px;
-webkit-border-top-left-radius: 10px;
border-top-right-radius: 10px;
-moz-border-radius-topright: 10px;
}
and now it seems to be ok.
jsd
Thanks so much!