|
-
May 12th, 2009, 01:49 AM
#1
Thread Starter
Addicted Member
-
May 12th, 2009, 04:31 AM
#2
Re: Tables and Text area
How many columns does your table have?
Last edited by Nightwalker83; May 12th, 2009 at 04:38 AM.
Reason: Fixing spelling!
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
May 12th, 2009, 05:13 AM
#3
Thread Starter
Addicted Member
Re: Tables and Text area
 Originally Posted by Nightwalker83
How many columns does your table have?
table is only 3 columns and 2 rows.. i want to put some text parallel to that table.. any ideas? thanks
The taller the bamboo grows the lower it bends... 
-
May 12th, 2009, 07:28 AM
#4
Re: Tables and Text area
 Originally Posted by JJJCR_FOX
table is only 3 columns and 2 rows.. i want to put some text parallel to that table.. any ideas?  thanks
Add a 4th column to the table. And in that 4th column (TD) put a table and whatever inside it you want to have.
Or maybe add a parent table with just 2 columns - one column has the left side table, the other column has the right side text.
-
May 12th, 2009, 09:30 AM
#5
Re: Tables and Text area
If you wrap the table in a div with relational positioning and a float of left, and then do the same to the content you want on the right of the table you can achieve the required result.
You will have to wrap both of the above divs in another div with absolute positioning, though.
Example:
Code:
<div id="main" style="position: absolute; top:100px; left:100px; border: 1px solid black;">
<div style="float: left; position: relative;">
<table width="200px" border="1">
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
</table>
</div>
<div style="float:left; border: 1px solid black; position: relative;">Testing</div>
</div>
-
May 12th, 2009, 07:54 PM
#6
Thread Starter
Addicted Member
Re: Tables and Text area
 Originally Posted by kfcSmitty
If you wrap the table in a div with relational positioning and a float of left, and then do the same to the content you want on the right of the table you can achieve the required result.
You will have to wrap both of the above divs in another div with absolute positioning, though.
Example:
Code:
<div id="main" style="position: absolute; top:100px; left:100px; border: 1px solid black;">
<div style="float: left; position: relative;">
<table width="200px" border="1">
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
<tr><td>blahblah</td><td>testing</td><td>hmm</td></tr>
</table>
</div>
<div style="float:left; border: 1px solid black; position: relative;">Testing</div>
</div>
thanks for the input..i'll try it out..
The taller the bamboo grows the lower it bends... 
-
May 12th, 2009, 08:00 PM
#7
Thread Starter
Addicted Member
Re: Tables and Text area
 Originally Posted by Pradeep1210
Add a 4th column to the table. And in that 4th column (TD) put a table and whatever inside it you want to have.
Or maybe add a parent table with just 2 columns - one column has the left side table, the other column has the right side text.
Hi, thanks for the reply.. yup..i can do what you suggested.. but the text i want to put it outside the table..i mean i like to make a separate filed..the text should not be a part of the table.. but anyways.. i'll try the suggestion of kfcsmitty..
Last edited by JJJCR_FOX; May 12th, 2009 at 08:18 PM.
The taller the bamboo grows the lower it bends... 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|