Try making sure that the divs for the tabber are inside of a body tag. That is the only thing I can think of that would be causing this. Your tabbertest.kid file would look something like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#" py:extends="'../master.kid'"> <head> <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/> </head> <body> <div class="tabber"> <div class="tabbertab"><h2>Tab1</h2>work1</div> <div class="tabbertab"><h2>Tab2</h2>work2</div> </div> </body> </html> I tested this on my system, and it appears to be working correctly. I think the reason you are getting a blank page instead of a trace log is due to your configuration setup. Usually it is a good idea to develop the site with server.environment set to "development" in your config file. This is the default for a new project, you may want to change it back so you get somewhat useful error messages instead of just blank pages. -Adam --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

