Hi,
Looking with firebug to your link. It is a
<p> .. paragraph element with class='command'
html at your example looks like
<p class='command'>
your text here
</p>
==== 1 ===============
using TW looks like
{{command{
your text here
}}}
Adding the following to the TW StyleSheet Tiddler
/*{{{*/
.command {
background-color : #F9F9F9;
border : 1px dashed #2F6FAB;
color : black;
font-family : "Courier New", Courier, mono;
font-size : 12px;
font-style : italic;
line-height : 1.1em;
padding : 1em;
margin : 0 0 0.8em;
}
/*}}}*/
==========================
======= 2 ================
As you mentioned allready TW uses the <pre> tag
CSS definitions found at
StyleSheetColors .. color definition
.viewer pre {
border:1px solid [[ColorPalette::SecondaryLight]];
background:[[ColorPalette::SecondaryPale]];
}
StyleSheetLayout .. padding, margin ..
.viewer pre {
padding:0.5em;
margin-left:0.5em;
font-size:1.2em;
line-height:1.4em;
overflow:auto;
}
and maybe some other places.
changing the above 2 to your needs, putting it to StyleSheet will
overwrite the default definition for
{{{
your text here
}}}
=======================
tested 1 .. works for me
didn't test 2
regards mario