Thread: tables problem
View Single Post
Old 08-04-2005, 08:45 PM   #3 (permalink)
clifford
Junior Member
 
Join Date: Jun 2005
Location: Finland
Posts: 26
Default

Yeah, you need to put some constraints on the table.

I know of two ways minumum....

1. You can use <br> tags to break up the text into lines:
Ex:
PHP Code:
This is the first line <br>
Second line<br
Third line 
OR

2. Set a width on the table.
Ex:
PHP Code:
<table width="40">
   <
tr>
      <
td>this line will be broken up everytime it reaches the lenght of 40 pixels.</td>
   </
tr>
</
table
Notice the width is in pixels, the text will go down as soon as it reaches the limit, but you can use percentages too Ex: width="50%".... either way this should help solve your problem.
clifford is offline   Reply With Quote
Sponsored Links