body { font-family:serif; "Times Roman"; }
did not need html in front to persist, but
body { background-color:lavender; }
body { color: blue; }
both did not persist without html in front of it.Add the words html body before each CSS element in your Stylesheet. Feel free to see the Stylesheet I use as an example here http://giffmex.org/recursosgiffmex.htm.
--
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/groups/opt_out.
The problem is that stylesheets generated from the stylesheet tiddlers are being added to the DOM in the wrong order, with the base stylesheet going last. That means that rules from the base stylesheet can only be overridden with rules of higher specificity. Adding the html and/or body elements is a simple hack to give the rule great specificity.