diff options
-rw-r--r-- | help3xsl/default.css | 4 | ||||
-rw-r--r-- | help3xsl/online_transform.xsl | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index bfaa632683..09c818bddc 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -295,6 +295,10 @@ h6 { margin-left: 30px; margin-right: 30px; } +.bascodepar{ + font-family: monospace; +} + /* Basic code syntax highlight */ .identifier, diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl index 0314767576..ccfa94ae5a 100644 --- a/help3xsl/online_transform.xsl +++ b/help3xsl/online_transform.xsl @@ -871,7 +871,7 @@ <!-- Insert Basic code snippet --> <xsl:template name="insertbascode"> - <pre><code><xsl:apply-templates /></code></pre> + <pre class="bascodepar"><xsl:apply-templates /></pre><br/> </xsl:template> <!-- Insert Logo code snippet --> |