> How can I change the appearance of text that I place between {{{ }}}
> three curly braces?
> e.g. change the font size and font colour.
If the {{{ and }}} are on lines by themselves (with no leading/
trailing whitespace), then the resulting output is a "PRE" element.
If the {{{ and }}} are 'inline' with other content, then the result is
a "CODE" element.
Using CSS declarations in StyleSheet, you can write:
.viewer pre { font-size:1.5em; color:blue; }
.viewer code { font-size:1.5em; color:green; }
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.