space between tables space between tables
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

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