Hi CharlieI am not currently aware of any specialized theme for showing tiddlers in a side-by-side column fashion.
There are however ways to show tiddlers in generated lists or sub stories (correct me if I'm wrong) and that allows you to show them side by side by defining columns via css.
@Jeremy uses flexbox on tiddlywiki.com. Check out http://tiddlywiki.com/#%24%3A%2F_tw5.com-styles for his tc-link-info class, which is used in :ArticlesExamplesLatestResourcesTutorialsEric Shulmann has created StyleSheetShortCuts (for TW classic) which uses columns (not supported in Internet Explorer). You can import his stylesheet tweaks tiddler into a TW5 and tag it with $:/tags/StylesheetCheers Måns Mårtensson
Den lørdag den 9. maj 2015 kl. 15.20.21 UTC+2 skrev Charlie Brown:Hi, I'm new to tiddlewiki (three days) but I'm really happy with it. Thanks a lot!
Right now my tiddlers are short and thin, and display them in only one column wastes too much spaces. Is there a theme or something so that I could list them in two columns? I did some searching but found no result.
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/lVRs1qfXEsc/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/897449c2-ac20-4f96-bfda-246eeed394e0%40googlegroups.com.
I’m on a roll today.
.tc-story-river { display: flex; flex-wrap: wrap; }
.tc-tiddler-frame { max-width: 49%; margin-right: 1%; }
One-up ;)
.tc-tiddler-body, that way the heading part won’t scroll (title,etc,tags).tc-tiddler-body { max-height: 24em; overflow: auto; }
...
Sure, go ahead. I'm going to update my demo as well. Maybe you could plug it in yours. (Meaning "mention")
Rustem,
That is awesome. I was only thinking about this in terms of independently scrolling columns, but I can think of plenty of places where this would be at least as useful, if not more so. Do you mind if I post how to do this on the wiki reference wiki and put up a demo site?
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/lVRs1qfXEsc/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/cb306a23-1736-4af8-9607-1294f5921d7c%40googlegroups.com.
No,no, you go ahead and do the demo. Please. Mine is just a working example, I'm too lazy to properly "demo" everything I've put in there. It's this one (not updated yet): http://solar-flair.tiddlyspot.com/. It's better suited for people who know how to dig into internals to see how the appearance was achieved.