[pmwiki-users] Advanced Tables and Font Size

H. Fox haganfox at users.sourceforge.net
Thu Jul 27 16:23:47 CDT 2006


On 7/27/06, Kurt Devlin <kurt.devlin at gmail.com> wrote:
> I'm probably missing some nuance of this, but I created a Group.Page.php
> with the following:
>
> $HTMLStylesFmt['small-td'] = "td { font-size:xx-small; }";
>
> and now I'm getting
>
> $HTMLStylesFmt['small-td'] = "td { font-size:xx-small; }";
>  Warning: Cannot modify header information - headers already sent by (output
> started at /server-path/pmwiki/local
> /Group.Page.php:1) in /server-path/pmwiki/pmwiki.php on line 870
>
> at the top of my Group/Page

Try

<?php if (!defined('PmWiki')) exit();
$HTMLStylesFmt['small-td'] = "td { font-size:xx-small; }";

Hagan




More information about the pmwiki-users mailing list