Hello all, I'm trying to use breadcrumbs in my site, and all seems to work fine, except for the Squishdot part. Here's what I have setup so far. I have put the following code in my standard_html_header (which is in the root of my zope tree) to show the breadcrumbs: <dtml-in PARENTS reverse> <a href="<dtml-var absolute_url>"><dtml-var title_or_id></a> <dtml-unless sequence-end>ยป</dtml-unless> </dtml-in> In the root of my Zope tree, I also have a instance of squishdot, called news, that inherits the standard_html_header from the root of the tree. Strangely enough, wherever I am in the squishdot site, it doesn't take the title of the item I'm looking at (such as the title of a news item), but it always takes the title of the squishdot instance itself. Does anyone know how we can fix this? Thanks, Pieter