> Add a term and uncheck "Save HTML-form settings".
>
It worked, but why?
As to the abbr colours I modified /lib/class.render.php
changing
var $tag_abbr = 'acronym'; // 'abbr' for XHTML 2.0
into
var $tag_abbr_1 = 'acronym-1'; // 'abbr' for XHTML 2.0
var $tag_abbr_2 = 'acronym-2'; // 'abbr' for XHTML 2.0
var $tag_abbr_3 = 'acronym-3'; // 'abbr' for XHTML 2.0
var $tag_abbr_5 = 'acronym-5'; // 'abbr' for XHTML 2.0
and
if (($tmp['str'] != '') || $tmp['attributes'][$chK] != '--')
{
$tagname = 'tag_'.$tag;
....
into
if (($tmp['str'] != '') || $tmp['attributes'][$chK] != '--')
{
$tagname = 'tag_'.$tag.'_'.$ar_abbr_groups[$tmp['attributes']
[$chK]];
....
}
Consequently
in /gw_temp/t/{theme name}/style.css
acronym-1,acronym-2,acronym-3,acronym-5 { font: italic 90% sans-
serif;}
acronym-1 { color: #e30700; }
acronym-2 { color: #9b67c7; }
acronym-3 { color: #5bbf3f; }
acronym-5 { color: #47a7a3; }
So I can change the colours of the short forms to.
Thanks.