Change this section to the following… Note that you do not want to use
as it is a separate cell in a table.
You normally use the | (table header) for long cols of data. For your use, just make it normal text and if you
want special formatting for it (such as colored backgrounds or bold text), then use CSS to make it pretty…
[php]
echo “
| ”;
echo “”;
echo “<img src='door.png alt=“door”> ”;
echo “NORD”;
echo “ | ”;
echo “
”;
[/php]
With this code, you have a table row. In that row, you have one cell square. In that cell, you have both the
image and the text for that one door. This example places the door at the top, uses
to move below the
picture and places the text under the door. You would reverse this to make the text above the door. For the
left-right door’s you would remove the
and place the text next to the image. I feel it is easier using the
DIV version I gave you before, but, the table is good, too. Either will work for you…