Hi Larry,
On Feb 1, 11:28 pm, larry <
lazhao...@gmail.com> wrote:
> Sorry for a newbie question. This may be related to wiki syntax.
> ... snip ...
> It shows a horizontal scroll bar. How to remove the scroll bar?
If a text is too long (for your screen settings) to be displayed as a
whole, all browsers automatically create a scroll bar, if the CSS
setting is "overflow: auto"
You could use "overflow: hidden"
The CSS definitions in TiddlyWiki are defined with StyleSeet tiddlers.
Just open your StyleSheet shadow tiddler and add
/*{{{*/
.viewer pre {
overflow: hidden;
}
/*}}}*/
-> Be aware, that this setting is valid for _all_ <pre> blocks.
-> Your StyleSheet tiddler can be found at the "More: Shadowed" tab at
the right sidebar.
-m