My theme for forester (+plugins)

<error> element

+13 -1
+6
forest.xsl
··· 103 103 </center> 104 104 </xsl:template> 105 105 106 + <xsl:template match="error"> 107 + <span class="error"> 108 + <xsl:apply-templates/> 109 + </span> 110 + </xsl:template> 111 + 106 112 <xsl:template match="link"> 107 113 <a class="{@type}" href="{@href}"> 108 114 <xsl:choose>
+7 -1
style.css
··· 609 609 610 610 ol li ol li ol { 611 611 list-style-type: lower-roman; 612 - } 612 + } 613 + 614 + .error { 615 + background-color: red; 616 + font-weight: bold; 617 + color: white; 618 + }