Of course you can describe classes via your template CSS files.
But the module can load personal CSS file. To use this function you must create file named
style.css in one of these folders:
- {joomla_root}/templates/{you_template}/html/mod_dphpbb3_last_topics/
- {joomla_root}/modules/mod_dphpbb3_last_topics/tmpl/
By default date text is under such CSS structure:
- Code: Select all
li.mod_dphpbb3_last_topics-topic small {
...
}
but the Username is there too.
But yoy can easy modify output format (and exclude date). In the module settings specify parameter
Topic output format. If it blank then default value used:
- Code: Select all
$title<br /><small>$username ($date)</small>
Enter format you wish, for example:
- Code: Select all
$title<br /><small>$username</small>
or
- Code: Select all
$title<br /><small>$username <span style="color: #000">($date)</span></small>
etc...