Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Wider text boxes in the Write panel?
I’ve noticed the widening of some of the content panels, which is great and I hope they all go that way. In a similar vein, would it be possible to widen the text edit boxes in the Write panel (middle column) so that more text is in view in the edit boxes? The left and right columns could remain the same width. I think this would be a tremendous help to drafting content there without the aid of an external editor (which provides similar comfort, among other things).
Just a thought.
Offline
Re: Wider text boxes in the Write panel?
in the dev version I just edited textpattern.css as follows (among a few other things) and you have it elastic.
<pre><code>
table#edit {
margin: 0 10px;
width:98%
}
input#title {
width:80%;
}
textarea#body,
textarea#excerpt,
textarea#css,
textarea#form,
textarea#html {
width:97%;
}
</code></pre>
TXP Builders – finely-crafted code, design and txp
Online
Re: Wider text boxes in the Write panel?
I’m glad you point that out, Jakob, because I rarely think to go into the admin CSS (and it’s a good idea in this case). For me it’s not a problem to edit my own, but it could be nice to change the default for those Txp users less CSS inclined (they exist).
Offline
Re: Wider text boxes in the Write panel?
Did the same edits as jakob, except I set mines to a width in px, suitable for my window width and my font-sizes. I use the same width for all textareas
, I get a consistent width of all panes that way.
BTW, I agree that the default width for the textareas in the content panes is on the narrow side, esp for those who use larger font-sizes.
Where is that emoji for a solar powered submarine when you need it ?
Sand space – admin theme for Textpattern
Offline
Re: Wider text boxes in the Write panel?
How does Wordpress let you resize the textareas, is it a feature of tinyMCE?
We Love TXP . TXP Themes . TXP Tags . TXP Planet . TXP Make
Offline
#6 2006-09-16 03:37:18
- Mary
- Sock Enthusiast
- Registered: 2004-06-27
- Posts: 6,236
Re: Wider text boxes in the Write panel?
…is it a feature of tinyMCE?
Yes.
Offline
#7 2006-09-16 21:06:53
- NyteOwl
- Member
- From: Nova Scotia, Canada
- Registered: 2005-09-24
- Posts: 539
Re: Wider text boxes in the Write panel?
I have been using the Resizeable Textarea extension for Firefox someone recommended here in a thread a few months ago. Works great except when the write page reloads after a save the textareas return to normal size.
Obsolescence is just a lack of imagination. / 36-bits Forever! / #include <disclaimer.h>;
Offline
Re: Wider text boxes in the Write panel?
i modified the textpattern.css to suit editing pages, forms and styles on my small laptop screen 1024 × 768. see the changed entries as displayed below.
code size in forms
<code>
code, .code {
font: 0.9em Monaco, “Courier New”, monospace;
}
</code>
form window sizes page and css, added textarea#form
<code>
textarea#html {
margin-top: 6px;
width: 600px;
height: 440px;
}
</code>
<code>
textarea#css {
width: 600px;
height: 460px;
}
</code>
<code>
/* new entry */
textarea#form {
width: 500px;
height: 330px;
}
</code>
idea of this: not having to scroll other than in form itself, save button below remains visible without page scrolling.
A hole turned upside down is a dome, when there’s also gravity.
Offline