> How do I change the appearance of individual items in the toolbar?
> If I want to make one of the items bold or a larger font, or color?
>

Are you just looking to do this in tiddlywikis?
To do what you want you can add some CSS rules to the StyleSheet
shadow tidder.

The toolbar is an element with the clas .toolbar and has the different
commands in it. The commands are each <a> tags and have a class of
button and an individual class .command_NameOfCommand. You can then
use these to add the styles you want. For example to make a large red
command I'd do the following:

.toolbar .command_closeTiddler {
    color: red;
    font-size: 1.2em;
}

Hope that helps,

Colm

-- 
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.

Reply via email to