As mentioned above, are provided two CSS file for presentation. For the first tests, copy the file mod_visitors_fe.css
from the /web/bundles/bugbustervisitors/css_demo on the local PC.
Then upload it to a subdirectory (and make that public) via the backend under Content -> Files and enable it in the layout under Stylesheets -> External Stylesheets.
since Contao 5.7 If you are already using the ‘TWIG layout with slots’ in Contao 5.7 or later, you will need to insert the uploaded CSS into the Twig layout template. Example line:
{% block end_of_head %}
{{ parent() }}
{# Load demo CSS from Visitors, uploaded to files/contaodemo/ #}
<link rel="stylesheet" href="{{ asset('contaodemo/mod_visitors_fe.css', 'contao_vfs.files') }}">
{% endblock %}