On Monday, March 20, 2017 at 10:55:14 AM UTC-7, Dave wrote: > > >> Is it maybe browser dependent? I mainly use firefox. >> >> Nope, same thing on Chrome :'( >
hmm.... it turns out that the TWCore is setting the height of the textarea element explicitly (i.e., not through a CSS rule, but rather by directly setting the property on the element. This is based on the EditorToolbar's "editor-height" selection (auto size to fit content vs fixed height) $:/core/ui/EditorToolbar/editor-height-dropdown <http://tiddlywiki.com/#%24%3A%2Fcore%2Fui%2FEditorToolbar%2Feditor-height-dropdown> To override this value for your custom input field (but NOT for all textarea elements), you can add "!important" to the height property in your CSS: .myTextEdit { width:50em; height:10em !important; } That should do it. enjoy, -e -- 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/94ca2662-0108-445e-8305-557ff89c96e4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

