space between tables space between tables
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

space between tables

Started by kirky, July 31, 2006, 02:27:56 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

kirky

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
Kirsten xx

Joachim Müller

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).

kirky

Kirsten xx