> My problem is that my corners will round just fine so long as they're > in the first tab. After that, they don't round at all. I can have > several divs on the first page and all will have rounded corners with > no problems, but nothing beyond that first tab.
My guess--just a guess mind you--is that they are not rounded because they are contained in an element that is hidden. jQuery makes heroic efforts to determine the dimensions of an element if it is directly hidden (display:none) but the elements you want to round are probably several levels down below the tab element that is hidden. In those cases the browser often returns bad values for height and width. If that is the problem, you could fix it by rounding the corners on elements in the selected tab the first time it is selected, as soon as it's set visible. If it isn't the problem, then my guess was wrong. :-)