Recent Topics

1 Dec 14, 2005 10:10    

Hi,

I found how to modify text-box height and weight, and I succesfully did it. What I want now is to add a scrollbar, since it has a little annoyance: (at least on firefox) when I write it doesn't scroll down automatically when I'm typing, you know what I mean?
If you want to see by yourself, this is my [url=http://www.silenzi.com]blog[/url]; leave also a test comment, if you want to.

Thanks in advance,

Francesco

2 Dec 14, 2005 10:21

Hi Francesco,

Change this :-
/*Don't show textarea scrollbar on IE*/

textarea{
overflow: hidden;
}

to this :-
/*Don't show textarea scrollbar on IE*/

* html textarea{
overflow: hidden;
}

;)

¥


Form is loading...