The above tangentialrjent wrote:A table is the solution, but the forum SW has to be able to let you write the code and insert it into the post. The code would look like:OK, I am done ....Code: Select all
<table style="width:100%"> <tr> <td>Jill</td> <td>Smith</td> <td>50</td> </tr> <tr> <td>Eve</td> <td>Jackson</td> <td>94</td> </tr> <tr> <td>John</td> <td>Doe</td> <td>80</td> </tr> </table>
reible wrote:In the old days when I did web pages we "got around it" by using tables. I'm guessing that is still done today as some pages have columns that line up well no matter. Can it be done here? Don't know and don't feel like trying.
So I think I've added to our drift away from the intent of this thread.
I will be out at the local woodcraft sometime in the next two weeks to take advantages of some sales and I'd like to see what that store knows or is willing to share on the subject. Not the one we just have been talking about but the shopsmith at woodcraft one.
Ed
What I found was there is link in the editor window, lower left, just below Options, click on BBcode and there is an explanation of what codes are available.
The way to make tables is to use the Code function that rjent references above.
So here is my "test" table» Outputting code or fixed width data
If you want to output a piece of code or in fact anything that requires a fixed width, e.g. Courier type font you should enclose the text intags, e.g.Code: Select all
All formatting used withinCode: Select all
echo "This is some code";tags is retained when you later view it. PHP syntax highlighting can be enabled usingCode: Select all
and is recommended when posting PHP code samples as it improves readability.Code: Select all
Top
note "code" automatically uses a mono space font and spaces and tabs are preserved.
lines a, b. and c have five spaces between entries and line d has one tab between entries.
Code: Select all
a1 a2 a3
b1 b2 b3
c1 c2 c3
d1 d2 d3