Special:Badtitle/NS90:User talk:Zoycite/Some magic wiki trick for tables of unknown size ?/reply (3)
ah I see the problem...
{{ #if:{{{recipe6|}}} | {{LoH/ForgeRow|{{{recipe6}}}}} |}}
On all of your recipe lines you are saying
if( recipe6 is set )
{
display ForgeRow recipe6
}
else
{
display blank line
}
This is a pretty trivial fix, it is just the way in which you have closed your #if parser function
Change:
{{ #if:{{{recipe6|}}} | {{LoH/ForgeRow|{{{recipe6}}}}} |}}
To:
{{ #if:{{{recipe6|}}} | {{LoH/ForgeRow|{{{recipe6}}}}} }}
Also it might help to declare this block in your table as its own cell
|-
{{ #if:{{{recipe1|}}} | {{LoH/ForgeRow|{{{recipe1}}}}} |}}
{{ #if:{{{recipe2|}}} | {{LoH/ForgeRow|{{{recipe2}}}}} |}}
{{ #if:{{{recipe3|}}} | {{LoH/ForgeRow|{{{recipe3}}}}} |}}
{{ #if:{{{recipe4|}}} | {{LoH/ForgeRow|{{{recipe4}}}}} |}}
{{ #if:{{{recipe5|}}} | {{LoH/ForgeRow|{{{recipe5}}}}} |}}
{{ #if:{{{recipe6|}}} | {{LoH/ForgeRow|{{{recipe6}}}}} |}}
Making that a sub table might help not sure though i havent looked into it too far.