Results 1 to 2 of 2

Thread: Transparancy Question "Noob Help"

  1. #1
    Join Date
    Oct 2005
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Transparancy Question "Noob Help"

    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

  2. #2
    Join Date
    May 2005
    Posts
    141
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    1. to make content in a textarea un writable, just add a READONLY into it
    esample:
    <TEXTAREA NAME="comments" ROWS="5" COLS="50" READONLY>
    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.

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •