Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder how I can add a class to body tag using Diazo with theme is set. I'll use if-content to check if the portal-column-two exist or not and depending on this put a class into body tag.

One solution is:

<replace theme="/html/body/@class">
  <xsl:attribute name="class"><xsl:copy-of select="." /> three_col</xsl:attribute>
</replace>

and is described here: Add class to body tag using diazo with notheme but works only if notheme is set.

So how can I put a simple additional css class into the body tag on the fly?

EDIT: This works with pure Diazo with theme and in Plone (plone.app.theming):

<before theme-children="/html/body"><xsl:attribute name="class"><xsl:value-of select="/html/body/@class" /> three_col</xsl:attribute>
</before>

And based on condition:

<before theme-children="/html/body" css:if-content="#portal-column-two">
  <xsl:attribute name="class"><xsl:value-of select="/html/body/@class" /> three_col</xsl:attribute>
</before>
<before theme-children="/html/body" css:if-not-content="#portal-column-two">
  <xsl:attribute name="class"><xsl:value-of select="/html/body/@class" /> two_col</xsl:attribute>
</before>

My final solution is described here: https://plone-theming-with-diazo.readthedocs.org/en/latest/snippets_diazo/recipes/index.html#add-css-class-depending-on-existing-portal-columns

share|improve this question
1  
Little related, here is how add body classes with Python: developer.plone.org/templates_css_and_javascripts/… – Mikko Ohtamaa Nov 18 '12 at 11:10
1  
hi Mikko, thx for your answer but i was looking for pure Diazo/XSLT solution. – MrTango Nov 20 '12 at 9:45
I wonder - isn't this question answered? – romanofski Jan 24 at 5:46
please mark your question as anwsered – toutpt Mar 26 at 18:11
@MrTango: Please accept toutp's answer, thanks! – Ida Ebkes Mar 28 at 7:20

1 Answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.