in reply to Discussion item title box width

This won't help you directly, but I have the following CSS in my Display Settings:

table.user-settings { width: 100%; } textarea { width: 100%; /* -moz-border-radius : 10px; */ } textarea:focus, input:focus, select:focus, option:focus { border-bottom-style: dashed; background: #f4f4ff; }

Having textarea { width: 100% } as an !important CSS setting in your browser is something I'm seriously considering, and that would be an option even for you.

Replies are listed 'Best First'.
PerlMonks CSS Hack: Set width of node title entry boxes
by jdporter (Paladin) on Oct 10, 2007 at 21:53 UTC

    As usual, put this in your Display Settings.

    /* composing a new node: */ input[type="text"][name="node"], /* editing a note you wrote: */ input[type="text"][name="note_title"], /* wikis, faqlets, doclets, doclists, docstrings: */ input[type="text"][name="update_title"], /* other specific node types: */ input[type="text"][name="categorized question_title"], input[type="text"][name="categorized answer_title"], input[type="text"][name="perltutorial_title"], input[type="text"][name="CUFP_title"], input[type="text"][name="monkdiscuss_title"], input[type="text"][name="perlmeditation_title"], input[type="text"][name="pmdevtopic_title"], input[type="text"][name="snippet_title"], input[type="text"][name="perlnews_title"], input[type="text"][name="perlquestion_title"], input[type="text"][name="poem_title"], input[type="text"][name="sourcecode_title"] { width: 60em; }
    A word spoken in Mind will reach its own level, in the objective world, by its own weight
Re^2: Discussion item title box width
by jdporter (Paladin) on Oct 10, 2007 at 12:52 UTC

    He seems to be talking about the title entry field, not the node content textarea.