Thread: Text Box Questions
Results 1 to 10 of 10
Related
-
some php questions Forum: PHP Forum
Replies: 1 -
3 questions Forum: CGI Perl Forum
Replies: 2 -
questions Forum: Graphics Forum
Replies: 17 -
asp questions Forum: ASP Forum
Replies: 26 -
questions Forum: HTML Forum
Replies: 2
-
08-20-2004, 12:17 PM #1
Text Box Questions
---Hello
---I Was Wondering If There Is A Way I Could Insert A Text
---Box In A Table
---I Was Also Wondering If There Is A Code For A Text Box
---That Has Scroll Bars On Both Sides Of It
---Thanx
-
08-20-2004, 02:40 PM #2bald headed old fart
Status- Offline
Join Date- Aug 2003
Location- chertsey, a small town 25 miles south west of london, england.
Posts- 739
Hi there DaWebmasta,
' I was wondering if there is a way I could insert a text box in a table 'Code:<style type="text/css"> <!-- table { border:solid 1px #000000; } td { border:solid 1px #000000; } textarea { width:324px; height:200px; font-family:courier; font-size:18px; color:#ffffff; background:#000060; } //--> </style> <table><tr> <td><textarea> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent blandit venenatis purus. Integer massa libero, vehicula id, consequat sed, tincidunt nec, purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Suspendisse potenti. Nunc vulputate magna non magna. Aenean lorem eros, adipiscing quis, semper non, dictum a, nunc. Curabitur ut sem. Pellentesque a est id neque hendrerit ultrices. Donec vulputate tincidunt turpis. Curabitur dignissim vestibulum nunc. Aliquam felis lorem, ultrices sit amet, convallis a, accumsan vel, ante. Proin aliquam turpis sed augue. In pellentesque, magna a pulvinar adipiscing, est orci adipiscing felis, sed laoreet urna magna quis neque. Proin facilisis aliquet urna. </textarea></td> </tr></table>
' I was also wondering if there is a code for a text box that has scroll bars on both sides of it '
coothead
-
08-20-2004, 04:57 PM #3
---Thanx coothead For The Reply The Code Works Great
---DaWebmasta
-
08-23-2004, 12:08 AM #4
http://htmlgoodies.com/tutors/forms.html heres a good tutorial on that stuff also, thats where i learned that stuff myself. gl man
-
08-28-2004, 11:05 AM #5
is there a way
is there a way to use this textarea and disable the public from typing or removing the words in the box?
-
08-28-2004, 11:10 AM #6
-
08-28-2004, 12:07 PM #7bald headed old fart
Status- Offline
Join Date- Aug 2003
Location- chertsey, a small town 25 miles south west of london, england.
Posts- 739
Hi there roc,
and a warm welcome to these forums
is there a way to use this textarea and disable the public from typing or removing the words in the box?
Code:<textarea readonly="readonly">
Also is there a way to change the font?
Code:textarea { width:324px; height:200px; font-family:courier; font-size:18px; color:#ffffff; background:#000060; }
coothead
-
08-28-2004, 06:45 PM #8
Thanks that was quite helpful
Thanks for the welcome too
You all rock
-
02-07-2005, 02:18 AM #9
background
can you put a background image in the textbox??
-
02-07-2005, 06:02 AM #10bald headed old fart
Status- Offline
Join Date- Aug 2003
Location- chertsey, a small town 25 miles south west of london, england.
Posts- 739
Hi there damnyoureyes,
can you put a background image in the textbox??
Code:<form action="#"> <div> <input type="text" style="background:url('your_image.jpg');"/> </div> </form>