PDA

View Full Version : Table Problem



The Demented One
2006-08-08, 01:17 PM
Whenever I make a table, whatever was in the last cell and the [td] tags gets thrown out of the table, generally landing right before it. I've checked and double checked the coding, and I'm pretty sure I haven't made any mistakes. So, what's wrong with the tables?

Ego Slayer
2006-08-08, 05:34 PM
Odd, I don't seem to have a problem.

Lucky
2006-08-08, 05:46 PM
Well, I'm hardly an expert on tables, but it might help if you were to post the code you've been using
in one of these boxes

And then post it again outside to show us the problem that occurs.

The Demented One
2006-08-08, 06:22 PM
Sure, here goes.


{table]
LevelBABFortRefWillSpecial
1+0+0+2+2Soulknife Abilities, Mindfire Shard
2+1+0+3+3Smouldering Knife
3+2+1+3+3–
4+3+1+4+4Mindfire Bladestorm
5+3+1+4+4–
6+4+2+5+5Greater Mindfire Strike
7+5+2+5+5–
8+6+2+6+6Burn the Mind
9+6+3+6+6–
10+7+3+7+7Blade of Immolation
0
[/table]

{table]
LevelBABFortRefWillSpecial
1+0+0+2+2Soulknife Abilities, Mindfire Shard
2+1+0+3+3Smouldering Knife
3+2+1+3+3–
4+3+1+4+4Mindfire Bladestorm
5+3+1+4+4–
6+4+2+5+5Greater Mindfire Strike
7+5+2+5+5–
8+6+2+6+6Burn the Mind
9+6+3+6+6–
10+7+3+7+7Blade of Immolation0
[/table]

See how the 0 and its tags get messed up?

Lucky
2006-08-08, 06:29 PM
Ok, I've been testing and testing to get it right, but it's apparent my lacking table skills won't get it fixed... I hope someone else with a little more knowledge of tables will come and help, I'm lost.

Good luck though!

Rawhide
2006-08-08, 07:05 PM
Your first line is too long, YaBB is inserting a space into it for text wrapping purposes and it is messing up the table.

Try putting them on separate lines like this:



{table]
Level
BAB
Fort
Ref
Will
Special
1+0+0+2+2Soulknife Abilities, Mindfire Shard
2+1+0+3+3Smouldering Knife
3+2+1+3+3–
4+3+1+4+4Mindfire Bladestorm
5+3+1+4+4–
6+4+2+5+5Greater Mindfire Strike
7+5+2+5+5–
8+6+2+6+6Burn the Mind
9+6+3+6+6–
10+7+3+7+7Blade of Immolation
[/table]


{table]
Level
BAB
Fort
Ref
Will
Special
1+0+0+2+2Soulknife Abilities, Mindfire Shard
2+1+0+3+3Smouldering Knife
3+2+1+3+3–
4+3+1+4+4Mindfire Bladestorm
5+3+1+4+4–
6+4+2+5+5Greater Mindfire Strike
7+5+2+5+5–
8+6+2+6+6Burn the Mind
9+6+3+6+6–
10+7+3+7+7Blade of Immolation
[/table]

Shhalahr Windrider
2006-08-09, 10:02 AM
It looks like part of your problem is that the first ten rows of your table have 6 columns, but you put a 7th on the last column.

The Demented One
2006-08-09, 11:02 PM
It looks like part of your problem is that the first ten rows of your table have 6 columns, but you put a 7th on the last column.
That was just to show the effects of it. If I took it out, the sixth cell would just get displaced. I think the text wrapping bit might be the problem.