Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TextBox Size

Status
Not open for further replies.

MnM

Programmer
Nov 1, 2000
47
US
I have a textbox and and it looks fine on some PC's but on others I have to change the size=1 to size=4. Why is this happening? For example I'm using the code below, if I do not change anything on one PC the output wil be 2001 (which is what it is supposed to be) and on others it will just show me 20 (it gets cut off.) Does anyone have any ideas? I've checked things like the Browser font, size, version and they are the same.
Code:
<td align=center><input type=&quot;text&quot; size=&quot;1&quot; name=&quot;year&quot; style=&quot;border-left: 0px; border-right: 0px;
border-top: 0px; border-bottom: 1px solid rgb(0,0,0); text-align: right; font-family : Arial, Helvetica; font-size: 73%;&quot; value=&quot;2001&quot; onFocus=&quot;blur();&quot;></td>
 
Take a quick check on the resolution settings on several computers, which some codes are picky, and especially when you're dealing with moving pictures. Also, try some raw HTML coding, which should be a grand default if anything.

f909
 
Is this just a simple text box?

Try this :
<input type=&quot;text&quot; name=&quot;T2&quot; size=&quot;4&quot; value=2001>
 
I've check resolution, changed it made it the same what it comes down to is it's not the resolution. As you can see from my code above it's not just a simple text box. It doesn't have all four sides visible only the bottom. I've checked everything on all the computers from browser version, operating system, display adapters and monitor type. The only thing that appears to be different is the type of monitors. Would this make a difference? I didn't think it would.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top