You can disable news from Admin --> Configuration --> Current theme
Disable Enable random news line in the forum header:
Or you can remove complete code from template file..
To remove news search for following in Themes/premiummgc/index.template.php
<div class="news normaltext">';
// Show a random news item? (or you could pick one from news_lines...)
if (!empty($settings['enable_news']))
echo '
<strong>', $txt['news'], ': </strong>', $context['random_news_line'], '';
echo '
</div>
and remove it.