Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2006-09-15 14:43:28

Destry
Member
From: Haut-Rhin
Registered: 2004-08-04
Posts: 4,909
Website

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

#2 2006-09-15 15:31:38

jakob
Admin
From: Germany
Registered: 2005-01-20
Posts: 4,607
Website

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

Offline

#3 2006-09-15 15:46:59

Destry
Member
From: Haut-Rhin
Registered: 2004-08-04
Posts: 4,909
Website

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

#4 2006-09-16 00:45:08

phiw13
Plugin Author
From: Japan
Registered: 2004-02-27
Posts: 3,086
Website

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

#5 2006-09-16 01:58:55

hcgtv
Plugin Author
From: Key Largo, Florida
Registered: 2005-11-29
Posts: 2,722
Website

Re: Wider text boxes in the Write panel?

How does Wordpress let you resize the textareas, is it a feature of tinyMCE?

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

#8 2006-09-29 23:31:28

jayrope
Plugin Author
From: Berlin
Registered: 2006-07-06
Posts: 687
Website Mastodon

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

Board footer

Powered by FluxBB