Hi Joan
> I want to change the default font for all italics (to Times Roman) I
> just can't seem to find where change this.
If you want to change the font used in the whole document you can
write something like this in the [[StyelSheet]] tiddler:
/*{{{*/
body {font-size:.85em;font-family:Times New Roman,times,serif; margin:
0; padding:0;}
/*}}}*/
You might only want to change the font to Times New Roman for italics
when there's a link to a nonexisting tiddler. Then you would write
something like:
/*{{{*/
tiddlyLinkNonExisting {font-family:Times New Roman,times,serif; font-
style:italic;}
#mainMenu .tiddlyLinkNonExisting {font-family:Times New
Roman,times,serif; font-style:italic;}
#sidebarTabs .tiddlyLinkNonExisting {font-family:Times New
Roman,times,serif; font-weight:normal; font-style:normal;}
/*}}}*/
I don't know how to affect *only* italics in general, however you can
control fonts "on the fly" by adding sth like:
@@font-family:"Arial,helvetica,sans-serif";font-style:italic;font-
size:.85em; Your Text Goes Here@@
Cheers Måns Mårtensson
--
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.