0
votes

I would like to increase width of lotus notes text field on web, I have tried

width="48"

On html tab of the field and put there in style tag but that is not working.

Basically I am having comment field which wherein I would like to increase width of the field so user can see enter long text instead of typing and getting moved.

P.s I know richtext field which can have cols and rows property but I dont need rich text field. I just need simple text field.

1
I think you need to add px for pixels, so width="48px"Per Henrik Lausten
even that does not work. :(hdc
What does the HTML output look like in the browser?Per Henrik Lausten
<input name="Comment1" value="" style="width=&quot;48px&quot;"></td>hdc
Argh, use colon and not equals sign: width:48pxPer Henrik Lausten

1 Answers

2
votes

Use colon and not an equals sign and add px. So do this instead:

width:48px;