From eae573b9ddd5339b5acb971290c1e83da216269a Mon Sep 17 00:00:00 2001 From: Marxsal Date: Wed, 14 Mar 2018 11:10:56 -0700 Subject: [PATCH] Doc: How to hide author's name (#3162) * Doc: How to hide author's name * Rename tiddler. Add additional fields to hide. * Small tweaks * Removed creator field leftover from testing. * New instructions for hiding author * New instructions for hiding author #2 --- ... the authors and other fields with CSS.tid | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 editions/tw5.com/tiddlers/howtos/How to hide the authors and other fields with CSS.tid diff --git a/editions/tw5.com/tiddlers/howtos/How to hide the authors and other fields with CSS.tid b/editions/tw5.com/tiddlers/howtos/How to hide the authors and other fields with CSS.tid new file mode 100644 index 000000000..2b6066477 --- /dev/null +++ b/editions/tw5.com/tiddlers/howtos/How to hide the authors and other fields with CSS.tid @@ -0,0 +1,31 @@ +created: 20180309232911422 +modified: 20180310201216266 +tags: Learning +title: How to hide the author's and other fields with CSS +type: text/vnd.tiddlywiki + +Sometimes you might want to save some screen space by hiding away the author's name in all tiddlers. Here's a quick way to do it: + +* Create a new tiddler with any title you want. +* Give the tiddler the tag `$:/tags/Stylesheet` +* In the text field of the tiddler put: + +``` +.tc-subtitle .tc-tiddlylink {display:none;} +``` + +* Save the tiddler. The author's name field should no longer appear. + +Similarly, the entire subtitle field including author and date can be removed with: + +``` +.tc-subtitle {display:none;} +``` + +Unfortunately, you can't hide just the date without also hiding the author using CSS. + +And finally, for a truly minimalist look, you can remove the title with: + +``` +h2.tc-title {display:none;) +```