Not a CSS customization but...
edit /moduels/keywordAlbum/KeywordAlbum.inc $module->translate(array('text' => 'Keyword Album: %s', 'arg1' => $keyword)),
There is a few other places in the module that has text that is translatable as well, but don't know what you really want to change and where.
Posts: 27300
Not a CSS customization but...
edit /moduels/keywordAlbum/KeywordAlbum.inc
$module->translate(array('text' => 'Keyword Album: %s', 'arg1' => $keyword)),
There is a few other places in the module that has text that is translatable as well, but don't know what you really want to change and where.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 52
Thanks, that does exactly what I need.
Is there a way to make the changes to the .inc file "locally" like tmeplate files so that changes won't be lost during upgrades?
Posts: 27300
Nope, but you could copy the module and rename it.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 55
How can I chaange "Keyword Album" prefix to be suffix?
Posts: 27300
$module->translate(array('text' => 'Keyword Album: %s', 'arg1' => $keyword)),
to
$module->translate(array('text' => '%s: Keyword Album', 'arg1' => $keyword)),
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 55
Thanks Dave