OK I have one more theme issue (hopefully the last) which worked when I edited old version but maybe my old memory aint what it used to be.
I want there to be space between each table, as you can see they are all touching each other. Not sure which part to edit on the template?
Here is example of what gallery looks like now:
http://www.kirkyskreations.com/gallery/displayimage.php?album=5&pos=4
Kirsten
modify the function endtable() in themes/yourtheme/theme.php. If such a function doesn't exist in your theme, copy // Function to end a 'standard' table
function endtable()
{
echo <<<EOT
</table>
<!-- End standard table -->
EOT;
}
into a new line before?>
and modify as you see fit (e.g. by adding a spacer image after the </table>-tag or by adding a <br />-tag there).
thanks, worked well.
Kirsten