In your root folder go to: components/com_acymailing/css
and open:
component_default.css
on line 95 you have this code:
div.acymailing_footer{
padding-top : 20px;
font-size : 10px;
}
change this code with this one:
div.acymailing_footer{
padding-top : 20px;
font-size : 10px;
display: none;
}
What this code does?
display:none; is telling to the browser to not display the div called acymailing_footer.
Your done!
Happy Joomla!
