Though this is a year old topic, I thought I would leave a note here how this helped me.
I wanted to make a list using letters instead of numbers or bullets - of the type: a. Item 1 b. Item 2 c. Item 3 Not being that conversant with CSS, this post, along with TW's page Styles and Classes in WikiText <https://tiddlywiki.com/#Styles%20and%20Classes%20in%20WikiText>, and w3schools.com - CSS list-style <https://www.w3schools.com/cssref/pr_list-style.asp> Property - helped to make it easier. While at w3schools.com, I found there are many different styles available there for making lists as well using the CSS list-style-type <https://www.w3schools.com/cssref/pr_list-style-type.asp> Property This below is what I used: @@list-style-type:lower-alpha; * Item 1 * Item 2 * Item 3 @@ Thanks On Thursday, December 21, 2017 at 4:58:11 AM UTC+7, Joshua Fontany wrote: > > This can be accomplished with a CSS Stylesheet tiddler. > > Create a tiddler and name it anything you want. > > Tag it with "$:/tags/Stylesheet". Paste the following into the text field > and save it. > > ul ul, ol ul { list-style-type: none; } > ul ul li, ol ul li { font-size: smaller; } > > This will affect all nested lists, so if you go to a 3rd "sub" level, it > will have an even smaller font size than the 2nd sub-level (and no > circle/dot). > > If this is unwanted, you can define similar "child of" CSS selectors to > set the behavior of sub-lists 3 levels or below. > > Best, > Joshua Fontany > > On Wednesday, December 20, 2017 at 6:39:05 AM UTC-8, tobaisch wrote: >> >> Hello, >> How can i change a bit the unsorted standard list, which one generates >> with a "*" or a "**". >> I would especially like the second sublist in a smaller font and without >> a circle at the beginning. >> THX >> Regards >> Tom >> > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/3e3e93ba-4010-4a28-9d09-2ea033d5c812%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

