brinkysbabee
07-16-2003, 03:26 AM
i need help making stuff bold in a text area...how could i go about doing that?
|
View Full Version : text areas brinkysbabee 07-16-2003, 03:26 AM i need help making stuff bold in a text area...how could i go about doing that? mystikal06 07-16-2003, 03:34 AM <B>**PUT TEXT IN BETWEEN THESE TWO TAGS**</B> just insert your text in between the two tags lol brinkysbabee 07-16-2003, 03:42 AM that doesn't really work...thats y i'm posting this message...the site (http://www14.brinkster.com/teegee87/main.html) Alcy 07-16-2003, 03:46 AM Try using a DIV instead.... It'll look the same as a textarea, but you can use html in it ^^ <div style="width:#px; height:#px; overflow:auto;"> <b>BOLDED TEXT</b> </div> pb&j 07-16-2003, 01:59 PM you can use css in your textarea tag like so... <textarea style="font-weight:bold;"> this is a test </textarea> but that would apply to all of the text. alcy has a good solution if you want only parts of the text to be bolded using the div. |