In Tro Basic HTML Fonts Images Links Marquees Backgrounds Tables FieldSet, TextArea Lists CSS Cursors Divs Page Anchors I Frame Image Maps Music Flash E mail Form Pop Ups Drop Down Menu - MySpace Edits - Center Profile Hide Extended Network Hide Details Section Hide Last Login Hide Contact Box Hide Your Friends Hide General Info. Hide Comments Hide Friends/Comments Hide Search Form Move Contact Box Remove MySpace Links Remove URL Box Resize Comment Images Reverse Com & Friends Scrollable Comments Dot Comers Grey Matter Mega Book Tag Board PHP FTP CHMOD CPanel Scripts Paint Shop Pro Animation Shop Vector Cheat Radio Blog My Space HTML Tester Help Links Color Chart Get-Hosting.net DaRicanBoi.com OrlandoSotoJr.com SoDamnCocky.com MySpace.com/S.D.C. |
To make a Fieldset use the followin code. <fieldset> content </fieldset> To make it have a Legend [a title] use the following code. <fieldset> <legend>Legend Here </legend> content </fieldset> Align the Legend use the following code. <fieldset> <legend align="center">Legend Here </legend> content </fieldset> Add CSS to Legden and FieldSet. change the color, size, alignment, make it have scrollbars... [ ---- Text Area ---- ] To make a TextArea use the followin code. <textarea> content </textarea> Add background to a TextArea use the followin code. <textarea style="background:#606060"> content </textarea> Add a border to a TextArea use the followin code. <textarea style="background:#606060;border:#990000 2px dashed"> content </textarea> Change the size of a TextArea use the followin code. <textarea style="background:#606060;border:#990000 2px dashed;height:200px;width:150px"> content </textarea> Change the font of a TextArea use the followin code. <textarea style="background:#606060;border:#990000 2px dashed;height:200px;width:150px;color:990000;font-family:tempus sans itc;font-size:14px"> content </textarea> |