Friend,
I added in menu "Administracao de emails". Wanted to add a line feed before the word emails.
How do I do that?
This is what we did:
To change the text it self you would edit this line in
/usr/local/cwpsrv/var/services/users/cwp_lang/pt/dashboard.ini
MAILACCOUNTSUB = "Administração de e-mails"
To change the HTML/CSS it's located in this file
/usr/local/cwpsrv/var/services/users/cwp_theme/original/menu_left.html
:
{% if ("email_accounts_custom" in rmenu ) %}
<li class="searchmenu">
<a href="#"><i class="fa fa-envelope"></i> <span class="nav-label">{{langene.MAILACCOUNT}}</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
{% if ("email_accounts_custom" in rmenu ) %}
<li class="search"><a target="_blank" href="
https://xxxx">{{langene.MAILACCOUNTSUB}}</a></li>
{% endif %}
</ul>
</li>
{% endif %}
Thanks