Anyone seen this Firefox bug: tabs stop working after ajax update

2008-04-28 Thread Matthew Young
I have a tabpanel. After ajax update to a div inside the tab-panel, the tab stop working: rollover hover doesn't work, no reaction to click. This only happen to Firefox both Windows and Linux. No problem with IE7, Opera or Safari. You can see this in action here:

Re: Anyone seen this Firefox bug: tabs stop working after ajax update

2008-04-28 Thread Cristi Manole
I think that your images div is overlapping the tab-row div. You could try to *add margin-top: 45px;* in the #photos style [line 172 in your style.css]. I am not sure if this will work since I see the first time the page loads the tabs work... anyways, by changing those on the fly in my browser

Re: Anyone seen this Firefox bug: tabs stop working after ajax update

2008-04-28 Thread Matthew Young
I think that your images div is overlapping the tab-row div. Oh wow, thanks for spotting this. The tab-panel div is overlapping tab-row div. I have no idea why though. I use your suggestion on tab-panel: div.tab-panel { margin-top: 45px; } and no more problem with the tabs. But how did