[RESOLVED] problems with textarea

windows

Guest
:) Hello everyone!<br />
<br />
My website consists of tables. <!-- w --><a class="postlink" href="http://www.mjb.netfirms.com">www.mjb.netfirms.com</a><!-- w --> (<!-- m --><a class="postlink" href="http://www.mjb.netfirms.com">http://www.mjb.netfirms.com</a><!-- m -->)<br />
<br />
I recently found this great transparent textarea code from one of the forums.<br />
<br />
<div style="position: absolute; overflow: auto;height: 100; width: 150; top: 400; left:490"><br />
<br />
I was able to insert this textarea into the page but it isn't locked into a table.<br />
So it stays fixed while the rest of the images in the tables move when resizing<br />
a window in Explorer.<br />
<br />
Is there anyway to insert this textarea so it is fixed inside a table with a background image?<br />
<br />
Also, can this textarea code be created so it cuts and pastes into other web layout tables?<br />
<br />
Ideally I'd like a transparent textarea code that I could use for all my websites.<br />
<br />
Thanks for your time,<!--content-->Well if you're going to use absolute positioning, then that's what'll happen. Just use the divider normally:<div style="height: 100px; width: 150px; overflow: auto;">[...]</div>Two other points: You really don't want to be using tables for layout. They bring up accessability, flexibility and SEO issues that you can just do without. You'll find things a lot easier if you use CSS (<!-- m --><a class="postlink" href="http://www.htmlhelp.com/reference/css/">http://www.htmlhelp.com/reference/css/</a><!-- m -->) for presentation and leave HTML for document structure. Dividers are not textareas.<!--content-->Thanks man,<br />
<br />
You've got good avice.<br />
<br />
All the best in webdesign.<!--content-->
 
Top