Hi all
What would be the appropriate CSS to avoid printing ViewTemplate/tags?
--
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 tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
--
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/ak-ADjDkBgo/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.
For more options, visit https://groups.google.com/d/optout.
@media print {#tw-tags-wrapper {display: none ! important;}}
<p id="myID"> some text </p>CSS
<p> some text </p>
</div>
CSS
.tw-my-wrapper{ display: none;}
--
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/ak-ADjDkBgo/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.
For more options, visit https://groups.google.com/d/optout.
And I use the !important because years ago someone told me I needed to do it for do not print in TiddlyWiki classic, so I just carried it over. Never tried the do not print without it.
I always thought # meant div and . meant class...so when . doesn't work I try #...
Try
@media print {.tc-tags-wrapper {display: none ! important;}}
I would like to print tiddlers without the tags and without the modification date (and the modyfier, but I currently do not use a name here).
I tried to put
@media print {.tw-tags-wrapper {display: none;}}
in my custom stylesheet tiddler (tagged $:/tags/Stylesheet), but that alone does not seem to be sufficient. Firefox still prints the tags.
@media print {.tc-tags-wrapper {display: none;}}