[jQuery] Re: rounded corners in tabs

2007-10-30 Thread SterlingK
Thanks, Klaus. Simplicity is good! On Oct 30, 12:55 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 30 Okt., 18:32, SterlingK <[EMAIL PROTECTED]> wrote: > > > $(document).ready(function() { > > $('.round_box').corner(); > > $('#tab_menu > ul').tabs({ cache: false, remote: true,

[jQuery] Re: rounded corners in tabs

2007-10-30 Thread Klaus Hartl
On 30 Okt., 18:32, SterlingK <[EMAIL PROTECTED]> wrote: > $(document).ready(function() { > $('.round_box').corner(); > $('#tab_menu > ul').tabs({ cache: false, remote: true, show: > function() { $('.round_box2').corner(); } }); > > }); There is no longer a remote option by the w

[jQuery] Re: rounded corners in tabs

2007-10-30 Thread SterlingK
For anyone else who deals with this issue, note that the above solution does not work with ajax (remote) tabs. For that, I had to do the following: $(document).ready(function() { $('.round_box').corner(); $('#tab_menu > ul').tabs({ cache: false, remote: true, show: function() {

[jQuery] Re: rounded corners in tabs

2007-10-30 Thread SterlingK
Klaus, I really appreciate the idea and it might actually work for a site with a fixed width. The main div on this one, however is 'width: 90%' and the effects of the off-screen technique were pretty hilarious . On the first load, the pages got all jumbled. On refresh, the 'position:fixed' div

[jQuery] Re: rounded corners in tabs

2007-10-30 Thread Klaus Hartl
On 30 Okt., 05:05, SterlingK <[EMAIL PROTECTED]> wrote: > Dave, you nailed it. I'm pretty new to jquery stuff, so I really > appreciate that nudge in the right direction. > > What I did is a callback on 'show' in my tabs function. Two > relatively small problems have now arisen from that. First

[jQuery] Re: rounded corners in tabs

2007-10-30 Thread SterlingK
Addendum to my last post: There's another reason that I need to find a better way. If I load the 'about' tab first (go to http://reconcilers.sterlingkcreations.com/#about to see example), the rounding doesn't work at all. So I really need to have all rounded boxes have the same class (i.e. '.rou

[jQuery] Re: rounded corners in tabs

2007-10-29 Thread SterlingK
Dave, you nailed it. I'm pretty new to jquery stuff, so I really appreciate that nudge in the right direction. What I did is a callback on 'show' in my tabs function. Two relatively small problems have now arisen from that. First, in Firefox the box that should be rounded flickers quite obviou

[jQuery] Re: rounded corners in tabs

2007-10-29 Thread Dave Methvin
> 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-