xCandy
03-08-2006, 03:24 AM
doing a website project n i need some quick help . . how do i make a text area but make it transparent to my backround?
|
View Full Version : Text areas heeelp! xCandy 03-08-2006, 03:24 AM doing a website project n i need some quick help . . how do i make a text area but make it transparent to my backround? Valkyrie 03-08-2006, 03:30 AM Either set the textarea's background color to match your page or if your background is an image, set the same image background or crop a piece of it and set it as the textarea's background. xCandy 03-08-2006, 03:39 AM so ur saying i cant make a text area transparent? what about if i use a table? Valkyrie 03-08-2006, 04:44 AM A table is transparent by default, unless you give it a background color or background image. xCandy 03-08-2006, 05:40 AM ok well wahts the code for a table :P Valkyrie 03-08-2006, 05:47 AM That's the code for a basic table. You can change the values in bold to whatever you want. You can also add more rows or columns too. If you still need more help with tables, take a look here: http://lissaexplains.com/tables.shtml#table <table cellspacing="0" cellpadding="0" border="0" height="200 width="200"> <tr> <td> Your Text/Content/Whatever </td> </tr> </table> xCandy 03-08-2006, 05:50 AM thanks alot ^^ |