space between tables space between tables
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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