 |
 |
Can you make the reply boxes as wide on Mac as they are on PC IE?
|
 |
|
 |
|
Senior User
Join Date: Jan 2003
Location: Tallahassee, FL
Status:
Offline
|
|
Please!!!
The PC reply boxes are at least 50% wider than they are in any Mac browser. Can you change that??
|
|
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Mar 2001
Location: Salamanca, España
Status:
Offline
|
|
Hey yeah! How about it? Is it possible?
|
|
I could take Sean Connery in a fight... I could definitely take him.
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Nov 2001
Location: Retired.
Status:
Offline
|
|
It's not the forum software that is deciding that is it? I thought it was the way the browser is rendering the page...
|
|
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Mar 2001
Location: Salamanca, España
Status:
Offline
|
|
Originally posted by gorickey:
It's not the forum software that is deciding that is it? I thought it was the way the browser is rendering the page...
The size of the box must be set somewhere right
It's not just rendering is it?
|
|
I could take Sean Connery in a fight... I could definitely take him.
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Nov 2001
Location: Retired.
Status:
Offline
|
|
Originally posted by voodoo:
The size of the box must be set somewhere right 
It's not just rendering is it?
Not sure; however, if they set it to be "bigger" then the boxes within IE on the PC are going to be way too big (I could careless, but others may not like that)?
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: May 2001
Status:
Offline
|
|
Originally posted by voodoo:
The size of the box must be set somewhere right 
It's not just rendering is it?
It's defined as <textarea name="message" rows="20" cols="60" wrap="virtual" tabindex="2"> what translates to "make a box of the size 20 lines with 60 characters each". Now to determine the absolute width based on a proportional font is something the browser need to work around.
However if I count, I can enter about 80 characters per line and still have much room to the left and right of the box, but there are users with smaller browser.
It would be possible to change the size dynamically with javascript, but that will most likely cause trouble because the browsers behave too different there.
-
|
|
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Mar 2001
Location: Salamanca, España
Status:
Offline
|
|
In IE on PeeCee I can write 70 characters per line - indicating 70 colums (right?)
|
|
I could take Sean Connery in a fight... I could definitely take him.
|
| |
|
|
|
 |
|
 |
|
Grizzled Veteran
Join Date: Nov 2003
Location: Hebburn, UK
Status:
Offline
|
|
I don't know how wide the textarea is on a PC, but why don't you just make it as wide as the table cell it's in? A simple
applied to the table it's nested in (which is in turn nested in a table cell - eugh) and a
Code:
style="width: 100%"
put in the textarea's tag.
That way it's always as wide as can be. Now, there's always the issue of fixed width layouts against liquid against elastic layouts, but at least this way the text box doesn't look like a little thing next to a lot of un-needed white space....
I don't know - the size of it never really bothered me, but applying this is trivial and allows me to type more on a line. Who know, it might even make benign stop pressing return to make every comment look like a poem...
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: May 2001
Status:
Offline
|
|
Originally posted by voodoo:
In IE on PeeCee I can write 70 characters per line - indicating 70 colums (right?)
Proportional or fixed-width font?
If fixed-width your browser probably determines the width depending on the surrounding font settings, if proportional, see above.
-
|
|
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: May 2001
Status:
Offline
|
|
Originally posted by Black Book:
I don't know how wide the textarea is on a PC, but why don't you just make it as wide as the table cell it's in? A simple
applied to the table it's nested in (which is in turn nested in a table cell - eugh) and a
Code:
style="width: 100%"
put in the textarea's tag.
That way it's always as wide as can be. Now, there's always the issue of fixed width layouts against liquid against elastic layouts, but at least this way the text box doesn't look like a little thing next to a lot of un-needed white space....
Yes, this would actually work (even without surrounding table) and should be pretty compatible.
I hereby propose to change it that way.
Originally posted by Black Book:
I don't know - the size of it never really bothered me, but applying this is trivial and allows me to type more on a line. Who know, it might even make benign stop pressing return to make every comment look like a poem...
It also didn't bother me. Very long lines might be not as easy to read, but I think that wouldn't bother me either.
-
|
|
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Mar 2001
Location: Salamanca, España
Status:
Offline
|
|
Originally posted by Black Book:
Who know, it might even make benign stop pressing return to make every comment look like a poem...
!!!
That should be reason enough, but I like your idea. This could work! Gzl please if you have the time could you take a look at this?
|
|
I could take Sean Connery in a fight... I could definitely take him.
|
| |
|
|
|
 |
|
 |
|
Mac Elite
Join Date: Jul 2002
Location: Tronna
Status:
Offline
|
|
Originally posted by Black Book:
Who know, it might even make benign stop pressing return to make every comment look like a poem...
 I friggin hate when people do that! Just keep typing, dammit, the words will wrap themselves.
Im using Firebird on a PC, this line takes up the full width of the text box:
WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
|
|
|
| |
|
|
|
 |
|
 |
|
Admin Emeritus 
Join Date: Nov 2000
Location: New Yawk
Status:
Offline
|
|
Now the textarea should look the same on all browsers. For some reason, 100% width made the textarea smaller, but vB specifies the width in absolute values anyway, so this is easier to do. Also, the problem was not PC vs Mac but IE vs everything else. For some reason, the textarea width was set to something different for IE, and I imagine that on Macs, non-IE browsers are just far more common, so it looked like a platform issue. So it was a setting on our end that wasn't synced for some odd reason; the strangest part is that those were the default settings, apparently.
Anyway, I think 70 columns is MORE than wide enough, and it seems like this does the trick =)
|
|
"Do not be too positive about things. You may be in error." (C. F. Lawlor, The Mixicologist)
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Nov 2001
Location: Retired.
Status:
Offline
|
|
Originally posted by gorgonzola:
Anyway, I think 70 columns is MORE than wide enough, and it seems like this does the trick =)
Thank you! I greatly appreciate your efforts into this...
|
|
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Mar 2001
Location: Salamanca, España
Status:
Offline
|
|
Originally posted by gorgonzola:
Now the textarea should look the same on all browsers. For some reason, 100% width made the textarea smaller, but vB specifies the width in absolute values anyway, so this is easier to do. Also, the problem was not PC vs Mac but IE vs everything else. For some reason, the textarea width was set to something different for IE, and I imagine that on Macs, non-IE browsers are just far more common, so it looked like a platform issue. So it was a setting on our end that wasn't synced for some odd reason; the strangest part is that those were the default settings, apparently.
Anyway, I think 70 columns is MORE than wide enough, and it seems like this does the trick =)
THANK YOU GZL!!
It is totally awesomely great!! Very very nice. Exactly like it is on the PC IE
Thanks for the work you put into checking it out.
|
|
I could take Sean Connery in a fight... I could definitely take him.
|
| |
|
|
|
 |
|
 |
|
Professional Poster
Join Date: Aug 2002
Location: Floreeda
Status:
Offline
|
|
|
|
|
|
| |
|
|
|
 |
|
 |
|
Senior User
Join Date: Jan 2003
Location: Tallahassee, FL
Status:
Offline
|
|
Thanks gorgonzola. It is much better to post now.
<thank you>
|
|
|
| |
|
|
|
 |
|
 |
|
Addicted to MacNN
Join Date: Nov 1999
Location: Madison, WI
Status:
Offline
|
|
Sweeeet, It's bigger!
-Owl
|
|
|
| |
|
|
|
 |
 |
|
 |
|
|
|
|
|

|
|
 |
Forum Rules
|
 |
 |
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is Off
|
|
|
|
|
|
 |
 |
 |
 |
|
 |
|