I have created a message box with scroll bar and i would like to know how can i make the background transparent? also is there a way to stop ppl deleting the text inside this box?
Cheers
I have created a message box with scroll bar and i would like to know how can i make the background transparent? also is there a way to stop ppl deleting the text inside this box?
Cheers
1. to make content in a textarea un writable, just add a READONLY into it
esample:2. as for the transparency, if it is 1 color, you can define the background, but if it is a picture i dont think you can.<TEXTAREA NAME="comments" ROWS="5" COLS="50" READONLY>
3. 1 way you can solve both problems, is to use a div
example:<div style="position:absolute; top:30; left:30; height:200; width:200; overflow:auto; padding:5px;">content</div>
Bookmarks