The forum operates in read-only mode. Please head to StackOverflow for support.
<?xml version="1.0" encoding="utf-8" ?>
RE: Format code
You can do the following :
edit your XML styles file, and add a line like :
<?xml version="1.0" encoding="utf-8" ?><Styles>
<Style name="code" element="pre">
<Attribute name="class" value="code" />
</Style>
</Styles>
Then go to the css file and remove the div declaration for code, just declare a code class. Something like :
.code {
css instructions....;
}
Hope this helps.
Y.chaouche
RE: Format code