> Many thanks for replying. This is almost exactly what I wanted. Two
> further questions: firstly, how would I make [[MainMenu]] refresh
> itself to show the new tiddler?

In PageTemplate, find this line:

   <div id='mainMenu' refresh='content' tiddler='MainMenu'></div>

and change it to

   <div id='mainMenu' refresh='content' force='true'
tiddler='MainMenu'></div>

i.e., add force='true'.  This causes the mainMenu display area to be
automatically refreshed each time any tiddler is changed.

> And where is the CSS that creates the bullets for the list?

The bullet elements are generated by the <<list>> macro.  But you can
suppress their *display* using CSS.  In general all customized CSS
goes in [[StyleSheet]], in which you can place the following custom
class definition:

.nobullets li { list-style-type: none; margin-left:-2em; }

Then, to apply that class to the bullet-list output in MainMenu, wrap
the <<list>> macro in a "CSS class wrapper", like this:

{{nobullets{<<list filter [tag[menuitem]]>>}}}

That should do it.

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

Reply via email to